What do you understand by a pure virtual member function?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by delegate? Can a user retain delegates?
What is virtual destructor ans explain its use?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
Explain "passing by value", "passing by pointer" and "passing by reference" ?
Define the operators that can be used with a pointer.
Explain what is class definition in c++ ?
What is the importance of mutable keyword?
how to swap two strings without using any third variable ?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
What are the two types of comments?
Why is c++ called oops?
What is Memory Alignment?