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

Correct Answer: 4

Discussion & Comments

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