#include<stdio.h>
#include<stdlib.h>
#define d 10+10
int main()
{
printf("%d",d*d);
return 0;
}
I am new to the concept of macros.I found the output for the above program to be 120.What is the logic behind it?
Thanks.
|
Macros are replaced literally. Think of search/replace. The compiler sees your code as It is common practice to enclose macro replacement texts in parentheses for that reason:
This is even more important when your macro is a function-like macro:
Think of |
|||
|
|
|
In general, |
|||
|
|
|
A macro is a nothing more than a simple text replacement, so your line:
becomes
You could use a
|
|||
|
|
|
The macro is expanded as is. Your program becomes
and the calculation is interpreted as
Always use parenthesis around macros (and their arguments when you have them)
|
|||
|
|
preprocessor directive substitute the first element with the second element. Just like a "find and replace" |
|||
|
|
|
I'm not sure about #include but in C# #define is used at the top to define a symbol. This allows the coder to do things like
|
|||
|
|
|
Simple math ;) Macro doesn't evaluate the value (it doesn't add 10 + 10) but simply replaces all it's occurences with the specified expression. |
|||
|
|
cpp source.cto see how is expanded – David RF Jan 15 at 20:03