Computer Science, asked by utsavvakani7523, 1 year ago

What is the purpose of file include section in a C program ?

Answers

Answered by sangashreedey56
0

Answer:

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:

#include is a pre-processing directive used to include the contents of a file into your program. Majorly it is used to include header files “.h”. So that you can use the functions of header file in your program.

hope it helps.....please mark it as brainliest if u like it

Similar questions