Hi, there is a simple code,but i cant understand the output:
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int x=10;
cout<<++x<<" "<<++x<<" "<<++x<<endl;
x=10;
cout<<x++<<" "<<x++<<" "<<x++<<endl;
getch();
}
output:
13 12 11
12 11 10