Hi
Could you please tell me how to solve this simple problem in c++.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a=5,b=3;
int y=a-b++ * --b; /* manually I get the answer as 6 , but the compiler gives as -4 . how?*/
cout<<y;
getch();
}