CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C Quiz #44

Compound Assignment Result

mediumOperators

What does this code print?

📄 Code

1int x = 10;
2x += 5 * 2;
3printf("%d", x);