Q:

WHAT IS HEADER FILE IN C LANGUAGE?

0

WHAT IS HEADER FILE IN C LANGUAGE?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Header file is a file that contains function declaration and macro definition for C in-built library functions.

  • All C standard library functions are declared in many header files which are saved as file_name.h.
  • We are including these header files in our C program using “#include <file_name.h>” command to make use of the functions those are declared in the header files.
  • When we include header files in our C program using “#include <filename.h>” command, all C code of the header files are included in C program. Then, this C program is compiled by compiler and executed.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now