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
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board