InterviewSolution
Saved Bookmarks
| 1. |
Is it necessary to include a header file in a program? If it is not done, what happens? |
|
Answer» No, it is not necessary to include header file in a C++ program at all. A header file is included if only the program intends to use the functions or macros etc. defined in that particular header file. |
|