1.

What is the output of this program?
#include 
using namespace std;
#define funOfSquare(num) num * num
int main()
{
int num;
cout << funOfSquare(num + 12);
return 0;
}

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


Discussion

No Comment Found

Related MCQs