How many storage classes are available in C++?
There are primarily four storage classes in C, viz. automatic, register, static, and external.
Is This Answer Correct ? | 0 Yes | 0 No |
Write a note about the virtual member function?
Describe new operator and delete operator?
How many keywords are used in c++?
Explain abstraction.
Explain about Virtual Function in C++?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
Copy Linked List using recursive function?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
What happens if an exception is throws from an object's constructor and from object's destructor?
What is constant in c++ with example?
Write about the retrieval of n number of objects during the process of delete[]p?
What is boyce codd normal form in c++?