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. A stream of byte that is the interface between IO and IO devices
Q. What will be output for the following code?
Q. Which of the following is the correct way to define a friend function in C++?
Q. A virtual function that has no definition within the base class is called____________
Q. Which of the following is true about C++ arrays?
Q. Find the output of below program.
Discusssion
Login to discuss.