What will be the output of the following program : void main() { int i=5; printf("%d %d %d %d %d",++i,i++,i++,i++,++i); }
Compile-Time Error
10 9 8 7 6
9 8 7 6 6
10 8 7 6 6