State the difference between delete and delete[].
No Answer is Posted For this Question
Be the First to Post Answer
How do we balance an AVL Tree in C++?
Do we have private destructors?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
Why do we use setw in c++?
Is c++ a good first language to learn?
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
What is a mutex and a critical section.Whats difference between them?How do each of them work?
Explain overriding.
What do manipulators do?
What is the difference between #import and #include in c++?
What does the nocreate and noreplace flag ensure when they are used for opening a file?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }