Home » C Programming » Expressions

What will be the output of the program? #include int main() { int i=3; i = i++; printf("%d\n", i); return 0; }

Correct Answer: 4

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion