0

Possible Duplicate:
What is the difference between #include <filename> and #include “filename”?

This is to do with the difference between using angle brackets and quotation marks to include files in C++, i.e.:

#include "mypath/myfile"

vs

#include <mypath/myfile>

I understand that the way the compiler searches for the files differs in each case (from here). However, does it affect the way the files are included? Are the same things (definitions, templates etc.) included in each case?

Community
  • 1
  • 1
Bill Cheatham
  • 11,396
  • 17
  • 69
  • 104

0 Answers0