Predict the output of following code:
#includestdio.h
void operations()
{
int i = 8;
int result= ++i + --i + --i + i;
printf("%d", result);
}
int main()
{
operations();
return 0;
}


Posted on by