1.

What is the output of this program?
#include <iostream> 
using namespace std;
int main()
{
int num1 = 7;
int num2 = 4;
int num3 = 6;
num1 = num2++;
num2 = --num3;
cout << num1 < return 0;
}

A. 5 4 5
B. 5 5 4
C. 4 5 5
D. Compilation Error
E. None of these
Answer» D. Compilation Error


Discussion

No Comment Found

Related MCQs