R
Q. What is the output of below program?
#include<iostream.h> void Execute(int &x, int y = 200) { int TEMP = x + y; x+= TEMP; if(y!=200) cout<<TEMP<<x<<y"--"; } int main() { int A=50, B=20; cout<<A<<B<<"--"; Execute(A,B); cout<<A<<B<<"--"; return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Find the output of the following program.
Q. Which operator is required to be overloaded as member function only?
Q. ______ function is used to allocate space for array in memory.
Q. The same function name having different tasks
Q. Which of the following is not a member of class?
Q. A Constructor that does not have any parameters is called____________ Constructor.
Q. An exceptio in C++ can be generated using which keywords.
Q. Which of the following is used to define a macro in C++?
Q. Which of the following are member dereferencing operators in CPP? 1.* 2. :: 3. ->* 4. ::* 5. ->
Discusssion
Login to discuss.