how to include a header file in c code example
Example 1: header file headers
#ifndef HEADER_FILE
#define HEADER_FILE
the entire header file file
#endif
Example 2: how to include seld declared header file in c++
#include "Employee.h"
//Employee.h should be saved in the same directory.