Don't understand why
#include <Header.h> is not compiling while #include "Header.h" is compiling with Visual Studio 2008. Am I missing something?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
|
The two forms of You can find which paths are searched for each form in the |
|||
|
|
|
They have different purposes. The brackets Here is another question with more information regarding this: |
|||
|
|
|
when you mention header file <>, it looks in standard includes, but when header file is included with "", starts with current directory,then will look at standard includes. Here, in this case, Header.h is in current directory, may not be in standard includes. |
|||
|