Saturday, July 19, 2008

FAQ for Academic students: Any Computer Science subjects

I will get more and more pleasure if you ask me more and more Intelligent quetion

4 comments:

Anonymous said...

i need c/c++ compilerr

Unknown said...

go to this site and you can get very easily


http://members.tripod.com/begin_cpp/index.html

Anonymous said...

Can we do something in constructor of any class like
class def
{
.....
};
class abc
{
public:
abc()
{
def obj=new def;
}
};

Unknown said...

You can do. But do it very carefully.

1. first anything which is extra to building of an object, that should be abfer bracket({). you can'nt do like this

abc(): def obj=new def
{
}

2. make sure that that object will construct at right time else your constructor will be fail.

3. Dont do any virtual stub things in your constructor.