How does the following piece of code work, in other words what is the algorithm of the C preprocessor. Does this work on all compilers
#include <stdio.h>
#define b a
#define a 170
int main() {
printf("%i", b);
return 0;
}
|
How does the following piece of code work, in other words what is the algorithm of the C preprocessor. Does this work on all compilers
|
||||
|
|
|
The preprocessor just replaces Works on gcc. |
|||
|
|
|
It's at §6.10.3 (Macro Replacement):
Further paragraphs state some complementary rules and exceptions, but this is basically it. Though it may violate some definitions of "single pass", it's very useful. Like the recursive preprocessing of included files (§5.1.1.2p4). |
|||
|
|
|
This simple replacement (first In doubt, you can always check the ISO standard (a draft is available online) to see how things are supposed to work :). Section 6.10.3 is the most relevant in your case. |
|||
|
|
|
To get detailed info you can try |
|||||
|
|
Here, 'b' is first assigned value 'a' then 'a' is assigned value '170'. For simplicity, it can be expressed as follows:
It's just a different way of defining the same thing. |
||||
|
|
|
The preprocessor just replaces the symbols sequentially whenever they appear. The order of the definitions does not matter in this case,
and after
If the order of definition was changed, i.e
Then preprocessor replaces
So, finally the printf statement becomes
This works for any compiler. |
|||
|
|
|
I think you are trying to get the information how the source code is processed by compiler. To know exactly you have to go through Translation Phases. The general steps that are followed by every compiler (tried to give every detail - gathered from different blogs and websites) are below:
|
|||
|