CJCoding With Joseph
← Back to Question List
C Code Walkthrough #11

Precedence: Multiply Before Add

easyOperators

📄 Code

Read carefully — what does this print?
1#include <stdio.h>
2int main() {
3 int x = 2 + 3 * 4;
4 printf("%d\n", x);
5 return 0;
6}

🎯 Your Answer