Possible Duplicate:
What is the difference between #include <filename> and #include “filename”?
Is there a difference between:
#include "windows.h"
and
#include <windows.h>
Thanks.
Yes.
#include "something"
Tries to include file in current directory first, and
#include <something>
Always include file from system directories.