What does new return if there is insufficient memory to make your new object?
No Answer is Posted For this Question
Be the First to Post Answer
What is Object Oriented programming.what is the difference between C++ and C?
Write a program to find the Fibonacci series recursively.
What does '\r' and '\b' mean? Please explain with example.
Explain the benefits of proper inheritance.
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Write a program to interchange 2 variables without using the third one.
When does a 'this' pointer get created?
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?
Which programming language is best to learn first?
What jobs can you get with a c++ certification?
Will the following program execute?
What is dynamic and static typing?