Programming MCQS - QUESTION DETAILS

What is the output of printf("%d", 5 + 3 * 2);?
A. 16
B. 11
C. 10
D. 13

Operator precedence: 3 * 2 = 6, 5 + 6 = 11.

Similar Questions

What does the 'exit()' function do in C?






How do you declare a constant integer in C?






How do you define a macro in C?






How do you declare a structure in C?






How do you declare a two-dimensional array in C?






What is the purpose of the 'enum' keyword in C?






What is the output of printf("%d", sizeof(1.5));?






Which header file is needed for file input and output operations in C?






How do you use the 'const' keyword with a pointer in C?






What is the output of printf("%d", 5 << 2);?