The C preprocessor
Compile-time constants
|
#define PI.................... 3.14159 |
Inserting files
|
#include <stdio.h> ..../* <...> for system include
files */ |
Conditional compilation
|
#define DEBUG_ENABLED |
Inline Macros
|
#define MAX(x,y)........ ( ( (x)>(y) )? (x) : (y)
) |