InterviewSolution
Saved Bookmarks
| 1. |
What is difference between including the header file with-in angular braces < > and double quotes “ “ |
|
Answer» If a header file is included with in < > then the compiler searches for the particular header file only with in the built in include path. If a header file is included with in “ “, then the compiler searches for the particular header file first in the current working directory, if not found then in the built in include path |
|