C Programming Language Header Files List PDF
C Programming Language Header Files List PDF
- I’m Programmer
1
Header files contain the set of predefined standard library functions that we can include in
our c programs. But to use these various library functions, we have to include the
appropriate header files.
Let us see in detail how the compiler interprets the line :
#include<stdio.h>
Here, # is a preprocessor directive which tells us that this is the line which must be
pre-processed by pre-processor.
include tells us that there is a filename ahead which must be included at the top of our
program. Preprocessor simply copies contents of file stdio.h in our code.
<> - Angled brackets defines where to search for header files.
stdio.h - is the file to be included in our program so that we can use built-in functions in
our program. These built-in functions are only declared in such header files and not
defined.
Apart from method or class declarations, header files also contain predefined macros, data
type definitions, etc.
When you call a built-in function, at compile time compiler compares your calling statement
with function prototype(which is in the header file) and if the return type, function name,
number of arguments, type of arguments are same then only the result of comparison is
said to be satisfying otherwise compiler gives you errors.
We can create our own header files as well. But they are specified in between double
quotes instead of angular brackets which will convene to make programming easier.
If you have a standard set of instructions that you want to insert in a lot of programs that
you are writing then you can do it using the #include statement.
2
The # symbol at the start stipulate that this isn't a C statement but one for the C
pre-processor which looks at the text file before the compiler gets it. The #include tells the
pre-processor to read in a text file and treat it as if it was part of the program's text. For
example:
#include "copy.txt"
could be used to include a copyright notice stored in the file copy.txt. However, the most
common use of the #include is to define constants and macros. The C pre-processor is
almost a language in its own right For example if you define the identifier NULL as:
#define NULL 0
then whenever you use NULL in your program the pre-processor substitutes 0. In most
cases you want these definitions to be included in all your programs and so the obvious
thing to do is to create a separate file that you can # include.
This idea of using standard include files has spiraled out of all proportions. Now such
include files are called header files and they are distinguished by ending in the extension
.h. A header file is generally used to define all of the functions, variables, and constants
contained in any function library that you might want to use.
There are many header files in C programming language and there all header files have
their own different functionalities…
List of all header file of c language as below.
3
4