1.

What is the output of this program?
#include <iostream> 
using namespace std;
int main()
{
int num = 15;
int Res ;
Res = num++;
cout << Res;
return 0;
}

A. 16
B. 15
C. 14
D. Compilation Error
E. None of these
Answer» C. 14


Discussion

No Comment Found

Related MCQs