in C Plus Plus by
What is the difference between including the header file with-in angular braces < > and double quotes ” “?

1 Answer

0 votes
by

If a header file is included within < > then the compiler searches for the particular header file only within the built-in include path. If a header file is included within ” “, 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.

...