Create myownheader.h
file and include all other file like,
#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
#include<ctype.h>
#include<malloc.h>
and when you need any header file in .c
file, add only myownheader.h
. For example:
#include "myownheader.h"
int main()
{
// my code
}