Don’t understand why
#include <Header.h> is not compiling while #include "Header.h" is compiling with Visual Studio 2008. Am I missing something?
Don’t understand why #include <Header.h> is not compiling while #include Header.h is compiling with
Share
The two forms of
#includesearch for headers differently.You can find which paths are searched for each form in the
#includeMSDN documentation.