Predict the output of following
#include<stdio.h>
int main()
{
int i=4;
int j;
j= sizeof(--i +  ++i);
printf (" i=%d j=%d\n",i,j);
return 0;
}


Posted on by