I write the code....
THE out put of this program is -2301
plz explain why -2301 comes.....
thank you
Code:
void main()
{
int i=-3,j=2,k=0,m;
m=++j&&++i||++k;
printf("%d%d%d%d",i,j,k,m);
getch();
}
plz explain why -2301 comes.....
thank you
Comment