Lecture 10(Header Files)
Lecture 10(Header Files)
Header files are helping file of your C program which holds the definitions of various
functions and their associated variables that needs to be imported into your C program
with the help of pre-processor #include statement. All the header file have a '.h' an
extensions.
The header files can be requested using the preprocessor directive #include. The
default header file that comes with the C compiler is the stdio.h including a header file
means that using the content of header file in your source program.
Syntax:
#include <file>
Function Description
Function Description
Function Description