Header files in C
Header files are built in toolkit which has many functions with its declaration, macro definitions that can be reused in all C programs. Features: It has many features as given below. It is a modular programming. It is easily readable. It has good maintainability. Reusability of code. Syntax: 1. Built in header file #include <headerfile.h> Where ‘.h’ is header file extension. Eg: #include <stdio.h> 2. User Defined header file. #include “headerfile.h” List of built in header files: <stdio.h> - It is for input and output functions. <stdlib.h> - It is for Utility functions. <string.h> - It is related to String manipulations. <math.h> - It has mathematical operations....