ShriRam Changed status to publish October 1, 2022
A library in C is a collection of header files, provided for use by other programs. It contains C function declarations and macro definitions to be shared between several source files. A header file’s extension is . h
There are two types of header files: 1. the files that the programmer writes and 2. the files that comes with your compiler.
There are 19 header files in the Standard C Library. The header file eliminates the labor of finding and changing all the copies as well as the risk
that a failure to find one copy will result in inconsistencies within a program.
ShriRam Changed status to publish October 1, 2022