how to make a header in c++ code example
Example 1: including cpp header file in c++
#include "enter_name_here.cpp"
//Make sure the files are in the same directory.
Example 2: how to include seld declared header file in c++
#include "Employee.h"
//Employee.h should be saved in the same directory.