Q90
What will be the output of the following C++ code? #include using namespace std; int main() int a = 20; int b = 10; int c = 15; int d = 5; int e; e = a + b * c / d; cout << e << endl ; return 0;
A.
50
AnswerB.
60
C.
70
D.
90
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board