Macro is just a compile-time substitution of text1. So the C preprocessor will change this line:
printf("%d ",16/cube(2));
to this line:
printf("%d ", 16/2*2*2);
After this text substitution is done, the compiler examines the expression. This results in the following evaluation:
// 16/2 is evaluated first because '/' has the same precedence as '*',
// so the tie is broken by left-to-ride order:
printf("%d ", 8*2*2);
// Then each of the '*' operators is evaluated in turn:
printf("%d ", 16*2);
printf("%d ", 32);
It is generally recommended to prevent operator precedence from altering how expressions in macros are interpreted by using parentheses around each use of a macro parameter and around the entire macro definition:
#define cube(x) ((x)*(x)*(x))
Note that if cube were not a macro but a function, the result would be different, because the function is fully compiled before an argument is passed to it:
int cube (int x)
{
return x*x*x;
}
…
printf("%d ",16/cube(2)); // Prints 2.
Footnote
1Actually, the text is parsed into preprocessor tokens and there are some other syntactic things that may occur. In large part, macro substitution is text substitution, but there can be some complications.
#define cube(x) ((x)*(x)*(x)), and (3) Don't use macros =P – WhozCraig Dec 31 '12 at 12:14void main()is wrong for two reasons: 1. main returnsint. 2. Unlike in C++, in C empty parentheses are not equivalent to void (but mean in K&R oldstyle a fixed but unspecified number of args). – Jens Dec 31 '12 at 12:16()in a function definition means that the function doesn't receive an argument. This isn't a function prototype but still valid C. – Jens Gustedt Dec 31 '12 at 13:24