Study Korner

What will be the output of the following code?


#include < stdio.h >
void main()
{
int i=5;
printf("%d,%d,%d,%d,%d", i++,i--,++i,--i,i);
getch();
}

Exit mobile version