-3

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.

Community
  • 1
  • 1
anbuf
  • 91
  • 2
  • 8

1 Answers1

6

Yes.

#include "something"

Tries to include file in current directory first, and

#include <something>

Always include file from system directories.

RiaD
  • 46,822
  • 11
  • 79
  • 123