Saturday, September 29, 2018

What is header file in C++?

Header files contain the definition of function and variable.These header file can use in C++ program by using pre-processor .We import header file by using (#include) statement.
Example
                     #include<iostream.h>
                     #include<conio.h>
here, h is the extension  which contains C++ function declaration and macro definition.
Header files
 

No comments:

Post a Comment