Predict the output for the following code
#includestdio.h
int main() {
int i=0,a=(++i,i++,++i);
printf("i=%d\na=%d\n",i,a);
if(a==3)
printf("ok");
else
printf("be");
return 0;
}

Posted on by