I'm learning C, but I do not understand this:
#define square(x) x*x
a = square(2+3) //a = 11
When this is run, why does a end up being 11?
|
I'm learning C, but I do not understand this:
When this is run, why does | |||||||||||
feedback
|
|
It expands to
Now try it with | |||||||||
feedback
|
|
On gcc you can use
Remedy Try this
| |||||
feedback
|
|
Because Always enclose macro arguments and the whole expression in parentheses to avoid this:
Also note that any expression you pass will be evaluated twice, and that can be undesired if the expression has a side effect such as an assignment, or a function call. In these cases it is better to use an inline function. | |||||||
feedback
|
|
think about what you get when the macro is expanded. The c preprocessor will expand this as
You need to correctly define your macro. Always enclose the macro variable in parenthesis. This would give you the expected result.
The macro expansion would be this:
| |||||
feedback
|