recategorized
2,386 views

3 Answers

1 votes
1 votes

Header files contain definitions of Functions and Variables, which is imported or used into any C++ program by using the pre-processor #include statement.

Header file have an extension ".h" which contains C++ function declaration and macro definition.

Header file is a library file, we can not passed to a function in C++.
We can pass constant, Structure and Array.

Answer:

Related questions

0 votes
0 votes
3 answers
2
go_editor asked Mar 24, 2020
2,095 views
Which of the following operators cannot be overloaded in $\textsf{C/C++}$ ?Bitwise right shift assignmentAddress ofIndirectionStructure reference