what are header files?????
Answers
Answered by
0
it is help for see top of the pages
Answered by
0
Header files in program are the pre processor directive files , which is executed when compiler encounters function related to that header files in bottom up approach.
Ex :-
#include<iostream.h> //header file
.
.
.
cout<<"..."; //calls header file <iostream.h>to execute cout statement.
Similar questions