ILE C/C++ Compiler Reference


Null Directive (#)

The null directive performs no action. It consists of a single # on a line of its own.

The null directive should not be confused with the # operator or the character that starts a preprocessor directive.

Example: # (null) directive

If MINVAL is a defined macro name, no action is performed. If MINVAL is not a defined identifier, it is defined 1.

#ifdef MINVAL
  #
#else
  #define MINVAL 1
#endif


[ Top of Page | Previous Page | Next Page | Table of Contents ]