Q. What is the output of the C Program?
Code:
int main()
{
int a=0;
a = 10 + 5 * 2 * 8 / 2 + 4;
printf("%d", a);
return 0;
}
β
Correct Answer: (B)
54