Computer Science, asked by emanuelidarlong, 7 months ago

Write a short note about header files inclusion



Answers

Answered by Anonymous
2

Answer:

at the top of each source file where you called getline. When you use #include to read in a header file, you automatically get the prototypes and other declarations it contains, and you should use header files, precisely so that you will get the prototypes and other declarations they contain. ...

Answered by klal8804
4

Explanation:

'', by the way, simply stands for ``header,'' and reflects the fact that #include directives usually sit at the top (head) of your source files, and contain global declarations and definitions which you would otherwise put there.

Similar questions