Predict the output of the program
#includestdio.h
main ()
{
int x = 100;
printf("%d\n", 10 + x++);
printf("%d\n", 10 + ++x);
}


Posted on by