What is the full form of india?
No Answer is Posted For this Question
Be the First to Post Answer
Can create new c++ operators?
What do the header files usually contains?
Can a constructor throw a exception? How to handle the error when the constructor fails?
What are the popular tools used to detect memory leaks in c++
What is the arrow operator in c++?
What is the difference between C and CPP?
Which is better c++ or java?
What is virtual destructors? Why they are used?
What are virtual functions and what is its use?
What are advantages and disadvantages of Design patterns?
How does list r; differs from list r();?
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; }