39. WAP to understand increment and decrement operator in printf function call.

 #include<stdio.h>

void main()

{

        volatile int i = 10;

        printf("%d %d %d %d %d %d\n",i++,++i,i,++i,i++,i);

}

Comments