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.

Don't understand why #include <Header.h> is not compiling while #include "Header.h" is compiling with Visual Studio 2008. Am I missing something?

share|improve this question

3 Answers

up vote 4 down vote accepted

The two forms of #include search for headers differently.

You can find which paths are searched for each form in the #include MSDN documentation.

share|improve this answer

They have different purposes.

The brackets < and > are for standard header files, while the quotes " are for your header files.

Here is another question with more information regarding this:

http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename

share|improve this answer

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.

share|improve this answer
+1 for trying to document the relevant behavioural difference, but "current directory" could easily be misunderstood. E.g. (not worded too well) it may initially be the "current working directory" from the compiler's perspective, but a header included from any directory can find other headers using a relative path in double quotes... – Tony D Oct 14 '10 at 6:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.