← Back to Question List
C Quiz #44
Compound Assignment Result
What does this code print?
📄 Code
1int x = 10;2x += 5 * 2;3printf("%d", x);
What does this code print?
1int x = 10;2x += 5 * 2;3printf("%d", x);