First page Back Continue Last page Graphics
Pre-Processor Directives
These start with a number sign #
At this point they are used to prevent multiple definitions.
- #ifndef COORDIN_H_
- #define COORDIN_H_
- // code here
- #endif
First time through, COORDIN_H_ not defined, so code is compiled.
Second time through, COORDIN_H_ IS defined, so code is not compiled.