Programming Tutorials

Comment on Tutorial - Demonstration of Prefix and Postfix operators in C++ By Emiley J



Comment Added by : Amit Goyal

Comment Added at : 2009-09-25 05:33:10

Comment on Tutorial : Demonstration of Prefix and Postfix operators in C++ By Emiley J
Thanks for the above description, but pls let me know the output of the following program and how it came.

#define mul(x) x * x

int main()
{
int i=3;
printf("%d \n", mul(++i));
printf("%d", i);
return(0);
}


View Tutorial