What return value must conversion operators have in their declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Comment on local and global scope of a variable.
How do you add an element to a set in c++?
Explain what happens when a pointer is deleted twice?
Can you explicitly call a destructor on a local variable?
How can I improve my c++ skills?
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; }
Why do we use setw in c++?
What is the use of static functions?
advantages and disadvantages of using Borland C++ / version 5.
Explain rtti.
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
What are destructors?