What is &x in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the sizes and ranges of the basic c++ data types?
How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?
How many namespaces are there in c++?
Write a function that swaps the values of two integers, using int* as the argument type?
What is a local variable?
What is general form of pure virtual function? Explain?
What are the various operations performed on stack?
how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds
Explain one-definition rule (odr).
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
Which algorithm do you like the most? Why?
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; }