1.

What is the output of this program?
#include <iostream> 
using namespace std;
int main()
{
int num1 = 10, num2 = 12;
cout << ++num1 < return 0;
}

A. 10 12
B. 12 10
C. 11 11
D. Compilation Error
E. None of these
Answer» D. Compilation Error


Discussion

No Comment Found

Related MCQs