Computer Science, asked by sodisangha, 5 months ago

description of header file​

Answers

Answered by varun200406
1

Answer:

A header file is a file with extension . h which contains C function declarations and macro definitions to be shared between several source files. There are two types of header files: the files that the programmer writes and the files that comes with your compiler.

Answered by speechlessmirror85
0

Answer:

A header file is a file with extension . h which contains C function declarations and macro definitions to be shared between several source files. There are two types of header files: the files that the programmer writes and the files that comes with your compiler.

You request to use a header file in your program by including it with the C preprocessing directive #include, like you have seen inclusion of stdio.h header file, which comes along with your compiler.

Explanation:

Z. 0-9. In C programming, a source code file that contains common definitions and data structures that all programmers may use as required. Also called "include files," because the #include statement is used to incorporate them with the program, header files use a . h extension.

I hope it will be help you ❤️❤️❤️

Similar questions