Vidyalelo
C++ Programming · Q62

Functions and Procedures in C++

Programming · C++ Programming · question 62

Q62

What will be the output of the following C++ code? #include using namespace std; #define SquareOf(x) x * x int main() int x; cout << SquareOf(x + 4); return 0;

A.
16
B.
64
C.
compile time error
D.
75386824
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board