Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "CPP/Syntax/Includes"
From NetSec
GertieUbpgdd (Talk | contribs) (Created page with "{{code|text= <source lang="cpp"> #include <library> //tells the compiler to look for 'library' in default library path. #include "/path/to/library" //tells the compiler to look ...") |
GertieUbpgdd (Talk | contribs) |
||
Line 1: | Line 1: | ||
+ | <noinclude>{{Subpage|CPP}}</noinclude> | ||
{{code|text= | {{code|text= | ||
<source lang="cpp"> | <source lang="cpp"> |
Latest revision as of 22:42, 15 July 2012
- back to CPP
#include <library> //tells the compiler to look for 'library' in default library path. #include "/path/to/library" //tells the compiler to look for 'library' in a specific path. |