#define

Navigation:  Programming language SQC > Preprocessor >

#define

Previous pageReturn to chapter overviewNext page

The '#define' expression declares a symbolic name which will be

substituted by the following expression.

 

#define  <constant> <replacement name>

 

Example:

 

#define FALSE  0

 

the compiler will replace every occurence of the term FALSE with the

value 0.