Last Updated : 10 Apr, 2024

Correct choice for the below program

#include <iostream>
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
(B) 60
(C) 70
(D) 90


Answer: (A)

Explanation: In this program, the value e is evaluated by precedence and we get the output as 50.


Share your thoughts in the comments