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
| ||||
|
feedback
|
|
The preprocessor just replaces Works on gcc. | |||
|
feedback
|
|
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. | |||
|
feedback
|