November 2002
Beginner
432 pages
11h 44m
English
Surprisingly, you'll never see #include in a list of C commands because #include is not a C command. Statements in a C program that begin with the pound sign are called preprocessor directives. The compiler analyzes the directive and, instead of compiling the statement, acts upon the statement immediately during compilation.
The #include preprocessor directive tells the compiler to insert another file that resides in source code form at the location in the program where the directive resides. Therefore, before the program is actually compiled, more code is inserted at the programmer's request at the place where #include occurs. That code is compiled along with the programmer's code.
The stdio.h file is a source code ...