what is the difference between #include <filename> and #include "filename" - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:27:57Z http://stackoverflow.com/feeds/question/21593 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename 19 what is the difference between #include <filename> and #include "filename" quest49 2008-08-22T01:40:06Z 2009-09-02T19:32:57Z <p>In the C and C++ programming languages, what is the difference between using angle brackets and using quotes in an <code>include</code> statement. </p> <ol> <li><code>#include &lt;filename&gt;</code> </li> <li><code>#include "filename"</code></li> </ol> http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename/21594#21594 37 Answer by quest49 for what is the difference between #include <filename> and #include "filename" quest49 2008-08-22T01:40:27Z 2009-08-05T13:18:09Z <p>The #include directive causes a copy of a specified file to be included in the place of the directive. The two forms of the #include directive are:</p> <ul> <li><code>#include &lt;filename&gt;</code></li> <li><code>#include "filename"</code></li> </ul> <p>The difference between these two is the location the preprocessor searches for the file to be included. If the file name is enclosed in quotes, the preprocessor searches in the same directory as the file being compiled for the file to be included. This method is normally used to include programmer defined headers. If the file name is enclosed in brackets - used for standard library headers - the search is performed in an implementation dependent manner, normally through predesignated directories. </p> http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename/38537#38537 0 Answer by mellis for what is the difference between #include <filename> and #include "filename" mellis 2008-09-01T22:19:04Z 2008-09-01T22:19:04Z <p>I believe that headers included in double-quotes will be looked for the in same system paths as angle-bracketed includes if they are not found in the current directory.</p> http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename/41538#41538 0 Answer by Arkadiy for what is the difference between #include <filename> and #include "filename" Arkadiy 2008-09-03T12:17:00Z 2008-09-03T12:17:00Z <p>The include tells the preprocessor to search in -I directories and in predefined directories <strong>first</strong>, then in the .c file's directory. The "file" include tells the preprocessor to search the source file's directory <strong>first</strong>, and then revert to -I and predefined. All destinations are searched anyway, only the order of search is different.</p> http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename/50266#50266 8 Answer by aib for what is the difference between #include <filename> and #include "filename" aib 2008-09-08T17:43:19Z 2008-09-08T17:43:19Z <p>The sequence of characters between &lt; and > uniquely refer to a header, which isn't necessarily a file. Implementations are pretty much free to use the character sequence as they wish. (Most, however, just treat it as a filename and do a search in the <em>include path</em>, as the other posts state.)</p> <p>If the #include "file" form is used, the implementation first looks for a file of the given name, if supported. If not (supported), or if the search fails, the implementation behaves as though the other (#include &lt;file&gt;) form was used.</p> <p>Also, a third form exists and is used when the #include directive doesn't match either of the forms above. In this form, some basic preprocessing (such as macro expansion) is done on the "operands" of the #include directive, and the result is expected to match one of the two other forms.</p> http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename/77092#77092 20 Answer by piCookie for what is the difference between #include <filename> and #include "filename" piCookie 2008-09-16T21:06:23Z 2008-09-16T21:06:23Z <p>The only way to know is to read your implementation's documentation.</p> <p>In the C standard (find N1124.PDF), section 6.10.2 paragraphs 2 to 4 state:</p> <p>2) A preprocessing directive of the form</p> <pre><code>#include &lt;h-char-sequence&gt; new-line </code></pre> <p>searches a sequence of implementation-defined places for a header identified uniquely by the specified sequence between the &lt; and > delimiters, and causes the replacement of that directive by the entire contents of the header. How the places are specified or the header identified is implementation-defined.</p> <p>3) A preprocessing directive of the form</p> <pre><code># include "q-char-sequence" new-line </code></pre> <p>causes the replacement of that directive by the entire contents of the source file identified by the specified sequence between the " delimiters. The named source file is searched for in an implementation-defined manner. If this search is not supported, or if the search fails, the directive is reprocessed as if it read</p> <pre><code># include &lt;h-char-sequence&gt; new-line </code></pre> <p>with the identical contained sequence (including > characters, if any) from the original directive.</p> <p>4) A preprocessing directive of the form</p> <pre><code># include pp-tokens new-line </code></pre> <p>(that does not match one of the two previous forms) is permitted. The preprocessing tokens after include in the directive are processed just as in normal text. (Each identifier currently defined as a macro name is replaced by its replacement list of preprocessing tokens.) The directive resulting after all replacements shall match one of the two previous forms.145) The method by which a sequence of preprocessing tokens between a &lt; and a > preprocessing token pair or a pair of " characters is combined into a single header name preprocessing token is implementation-defined.</p> <p>h-char: any member of the source character set except the new-line character and ></p> <p>q-char: any member of the source character set except the new-line character and "</p> http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename/1369669#1369669 -1 Answer by bytepusher for what is the difference between #include <filename> and #include "filename" bytepusher 2009-09-02T19:32:57Z 2009-09-02T19:32:57Z <p>I have used both interchangeably and never noticed any difference (with Visual C++). My conclusion is that you can assume they are equal.</p>