C code output ?
Hii
Can anyone please explain me the output of this code
int main()
{
int i=0;
while(+(+i--)!=0)
i -= i++;
printf("%d",i);
getchar();
return 0;
}
I found it at :-
#-Link-Snipped-#
Can anyone please explain me the output of this code
int main()
{
int i=0;
while(+(+i--)!=0)
i -= i++;
printf("%d",i);
getchar();
return 0;
}
I found it at :-
#-Link-Snipped-#
0