Question: What will be printed after executing the following C++ code? int a=3, b=5, c=7, d=-2 ; if (d > 0) cout < < a +
-
What will be printed after executing the following C++ code?
int a=3, b=5, c=7, d=-2 ;
if (d > 0)
cout << a + b * c << endl;
else
cout << a * b - c << endl;
-
-13
-
29
-
38
-
8
-
NONE
-
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
