-
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;
}
-
- 144
- Compilation Error
- Runtime Error
- Garbage value
- None of these
Correct Option: E
In this program, as we have not initialize the variable num, we will get a output of ending digit of 12.