Identifier Change (#define)

Top 

 

Syntax:

#define identifier line

Example:

#define Count 100

Changes each occurrence of the Count identifier in the program text to 100.

#undef identifier

Example:

#undef Count

Cancels any previous definition for the Count identifier.