What is the difference between “” and <> when a header file is included in a program? [duplicate]
问题 This question already has answers here : Closed 9 years ago . Possible Duplicate: what is the difference between #include <filename> and #include “filename” I would like to know what's the difference between #include "stdio.h" and #include <stdio.h> 回答1: Use <whatever> for system headers, and "whatever" for your own headers. The difference is that when it's enclosed in quotes, the compiler will look in the local directory, but with <> , it won't. If you want to get technical, the C standard