C Preprocessor

The C preprocessor (cpp) is a macro-processor which Example:
#define MAXVALUE 100
#define check(x) ((x) < MAXVALUE)
...
if (check(i)) { ... }
becomes
...
if ((i) < 100) { ... }

Index