Q36
What will be the output of the following C++ code? #include using namespace std; int main() int a; a = 5 + 3 * 5; cout << a; return 0;
A.
35
B.
20
AnswerC.
25
D.
30
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board