What is '#include' in C Language?
What is ‘#include’ in C language?
·
#include is nothing but a preprocessor directive.
· It is used to include different header files in our c
programs as per programmer need.
· We have to add these directives at the beginning of c
program as per the standard of c.
· #include directive tells the preprocessor to insert
the contents of another file into the source code at the point where the
#include directive is found.
·
Syntax:- #include <name of header file>
· We can add multiple preprocessor directive in c programs
to add useful header files.
You can also refer to my C Language Tutorial video Series on Youtube by clicking on link given below:
https://www.youtube.com/playlist?list=PLs1CqWhbpIAF8jPz5HE8HXmA5qdDyAXhf
You can also refer to my C Language Tutorial video Series on Youtube by clicking on link given below:
https://www.youtube.com/playlist?list=PLs1CqWhbpIAF8jPz5HE8HXmA5qdDyAXhf
Comments
Post a Comment