How to create header files in C/C++ ?
First of all, does creating a header file useful at all ? If yes how ?
It obviously is or else we wouldnot have had something called a ‘header files’.
Next, can we create our own header files ?
Yes, you can. It is pretty simple and its going to make your program simple and customizable.
Let us start with creating a header file in the traditional TurboC. Define the contents of the header file (meaning the functions you would like to include in the file) and then save it as a ‘.h’ file in the ‘include’ directory.
The path could be C:/TC/INCLUDE if you have installed Turbo C directly in ‘drive C’.
Your are done !! Include the header file in the program by just including the file like any other file.
#include “headerfilename.h” or #include
Creating one in GCC is a bit more difficult. Define the file in the same way as stated above and save it in a ‘directory where you are going to save the program’ (NOTE: This is important. Both the header file and the program must be in the same directory, if not the program will not be able to detect your header file ). Header File successfully created ! But, unlike Turbo C the header file cannot be included by
#include
The only way to include the header file is to treat the filename in the same way you treat a string.
#include “headerfilename.h”
Now that you have created your header files, you can create the function like sort, factorial etc. And store them in the header file. When you intend to use them, include the header file in the program and just call the function you stored in the header file.
First of all, does creating a header file useful at all ? If yes how ?
It obviously is or else we wouldnot have had something called a ‘header files’.
Next, can we create our own header files ?
Yes, you can. It is pretty simple and its going to make your program simple and customizable.
Let us start with creating a header file in the traditional TurboC. Define the contents of the header file (meaning the functions you would like to include in the file) and then save it as a ‘.h’ file in the ‘include’ directory.
The path could be C:/TC/INCLUDE if you have installed Turbo C directly in ‘drive C’.
Your are done !! Include the header file in the program by just including the file like any other file.
#include “headerfilename.h” or #include
Creating one in GCC is a bit more difficult. Define the file in the same way as stated above and save it in a ‘directory where you are going to save the program’ (NOTE: This is important. Both the header file and the program must be in the same directory, if not the program will not be able to detect your header file ). Header File successfully created ! But, unlike Turbo C the header file cannot be included by
#include
The only way to include the header file is to treat the filename in the same way you treat a string.
#include “headerfilename.h”
Now that you have created your header files, you can create the function like sort, factorial etc. And store them in the header file. When you intend to use them, include the header file in the program and just call the function you stored in the header file.