What will be the output of the following code? Ankur Kulhari 7 years ago #include < stdio.h > void main() { int i=5; printf("%d,%d,%d,%d,%d", i++,i--,++i,--i,i); getch(); } Share this: