1.

What is the output of this program?
#include 
using namespace std;
#define Maximum 100
int main()
{
int n;
num = ++Maximum;
cout << n;
return 0;
}

A. 100
B. Compilation Error
C. Runtime Error
D. Garbage value
E. None of these
Answer» C. Runtime Error


Discussion

No Comment Found

Related MCQs