Possible Duplicate:
What is the difference between #include <filename> and #include “filename”?
What is the meaning of include "abc.h" and how it is different from include ?
Possible Duplicate:
What is the difference between #include <filename> and #include “filename”?
What is the meaning of include "abc.h" and how it is different from include ?
Including "abc.h"
will look in the current directory. <abc.h>
will look in the include directory, which can be provided at compile-time.
<abc.h>
is usually for built-in use such as math while "abc.h"
is usually for customized use.
is being looked for in your header include path and "abc.h" relative to your source file's path first.