Google News
logo
C-Language - Interview Questions
What are header files in C?
Header files are those which contain C function declaration and macro definitions that are to be shared between sourced files. Header files are generated with the extension .h.
 
There are two types of header files:
 
* Programmer generated a header file
* Files that come with your compiler

Syntax: #include <file>
Advertisement