R
Q. Find output of below program.
int main() { int c1,c2; int a = -8; int b = 3; c1 = --a + b; c2 = a-- + b; cout<<"c1="<<c1<<", "<<"c2="<<c2<<endl; 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. Which one is not a correct variable type in C++?
Q. Inline functions are invoked at the time of
Q. Identify the incorrect statements.
Q. Which of the following is not a valid C++ keyword?
Q. Which one of the following is not a valid reserved keyword in C++
Q. The constants are also called as
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x >= y);
Q. Which of the following is not a type of constructor?
Discusssion
Login to discuss.