← Back to Question List
C Quiz #23
Operator Precedence
What does this program print?
📄 Code
1#include <stdio.h>23int main() {4 printf("%d", 2 + 3 * 4);5 return 0;6}
What does this program print?
1#include <stdio.h>23int main() {4 printf("%d", 2 + 3 * 4);5 return 0;6}