#include<iostream.h>
#include<conio.h>
main()
{
int c=2,a=5;
clrscr();
c = a++ - a;
cout<<c;
getch();
}
I know the answer of this program. The result is 0.
But i want to know the working of this program(I'm a newbie to c++. So, please help me..)
Thanks.