Q76
What will be the output of the following C++ code? #include using namespace std; #define PR(id) cout << "The value of " #id " is "<<id int main() int i = 10; PR(i); return 0;
A.
10
AnswerB.
15
C.
20
D.
12
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board