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. What is the output of the following C++ code?
Q. What happens if we execute the following code in C and C++?
Q. A C++ code line ends with ___
Q. Which of the following statements is equivalent to scanf() in C++?
Q. Which of the following is not a standard exception built in C++.
Q. ____ is the smallest individual unit in a program
Q. At which time does the static_cast can be applied?
Q. How many types of comments are there in c++?
Q. Which of the STL containers store the elements contiguously (in adjacent memory locations)?
Discusssion
Login to discuss.