+ 1
How to make your own header files in c++?
4 Respuestas
+ 2
Dont make Main function in any File and Save it as headerfile_name.h and Which can contain number of method except Main function
+ 2
example:-
#include<iostream.h>
#include<conio.h>
#include<math.h>
#include<stdio.h>
#include<time.h>
//now save above file as:- Mustafa.h
Then in any of your program just include the file <Mustafa.h> and all the defined header files will be included in your program
+ 1
thanks bro!
+ 1
what if i will make my own function in my own header file??