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;
}
link|improve this question

69% accept rate
feedback

2 Answers

up vote 8 down vote accepted

The preprocessor just replaces b with a wherever it finds it in the program and then replaces a with 170 It is just plain textual replacement.

Works on gcc.

link|improve this answer
feedback

This simple replacement (first b with a and then a with 170) should work with any compiler. You should be careful with more complicated cases (usually involving stringification '#' and token concatenation '##') as there are corner case handled differently at least by MSVC and gcc.

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.