what you know about c++?
No Answer is Posted For this Question
Be the First to Post Answer
what is object?
Describe new operator and delete operator?
Is there any difference between dlearations int* x and int *x? If so tell me the difference?
Difference between a homogeneous and a heterogeneous container
Why pure virtual functions are used if they don't have implementation / When does a pure virtual function become useful?
What is data types c++?
What apps are written in c++?
How do I exit turbo c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What is iomanip c++?
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?
Explain the difference between new() and malloc() in c++?