Q.

#include <iostream>
using namespace std;
int main()
{
int a = 10, b = 20;
a = a++;
b = ++b;
cout << a << b;
return 0;
}

A. 10 20
B. 11 20
C. 10 21
D. 11 21
Answer» C. 10 21
1.3k
0
Do you find this helpful?
4

Discussion

No comments yet

Related MCQs