#include<stdio.h>
#include<conio.h>
void main()
{
int i=10;
int x=i++;
printf("%d \n",x);//10
printf("%d \n",i);//11
int j=5;
int y=--j;//4
printf("%d \n",y);
getch();
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter