C | Functions | Question 11

Last Updated :
Discuss
Comments
Output of following program? C
#include <stdio.h>
int main()
{
    int i = 5;
    printf("%d %d %d", i++, i++, i++);
    return 0;
}
7 6 5
5 6 7
7 7 7
Compiler Dependent
Tags:
Share your thoughts in the comments