This is a discussion on Use of the Directive within the C and C++ forums, part of the Programming Talk category; What is the use of #if directives in C programming language. If someone could provide me the syntax and it ...
|
|||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
The #if directive controls compilation of portions of a source file. If the expression you write after the #if have a nonzero value, the line group immediately following the #if directive is retained in the translation unit.
|