Computer Science, asked by MissFancy, 18 days ago

write a program to create h basic information from ​

Answers

Answered by KashviDhania
0

Answer:

As we all know that files with .h extension are called header files in C. These header files generally contain function declarations which we can be used in our main C program, like for e.g. there is need to include stdio.h in our C program to use function printf() in the program. So the question arises, is it possible to create your own header file?

The answer to the above is yes. header files are simply files in which you can declare your own functions that you can use in your main program or these can be used while writing large C programs.

NOTE:Header files generally contain definitions of data types, function prototypes and C preprocessor commands.

Explanation:

If You Think My Answer was helpful for you so make my answer as Brainliest Answer

Answered by hina3758
0

Explanation:

if my answer is correct mark me as brainliest

Attachments:
Similar questions