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 #19

Post-Increment Output

mediumVariables

What does this program print?

📄 Code

1#include <stdio.h>
2 
3int main() {
4 int x = 5;
5 printf("%d", x++);
6 return 0;
7}