← Back to Question List
C Code Walkthrough #38
Arithmetic Operator Precedence
📄 Code
Read carefully — what does this print?1#include <stdio.h>2int main() {3 int result = 2 + 3 * 4 - 10 / 2;4 printf("%d", result);5 return 0;6}