Why are pointers not used in c++?
What is the use of endl in c++?
What are the weaknesses of C++?
What is constant in c++ with example?
Find the second maximum in an array?
Write about the various sections of the executable image?
Is oops and c++ same?
What is the meaning of string in c++?
What is encapsulation in c++ with example?
How is c++ used in the real world?
What is an html tag?
What is a down cast?
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; }