Should the this pointer can be used in the constructor?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between *p++ and (*p)++ ?
Do class method definitions?
What is class definition in c++ ?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
What do you mean by function overriding & function overloading in c++?
Explain how an exception handler is defined and invoked in a Program.
Explain the different access specifiers for the class member in c++.
What is the size of pointer ? Also size of pointer in 64 bit pointer
What is a down cast?
What is increment operator in c++?
What is the copy-and-swap idiom?