Syntax:
#define identifier line
Example:
#define Count 100
Changes each occurrence of the Count identifier in the program text to 100.
#undef identifier
#undef Count
Cancels any previous definition for the Count identifier.