Questions about this topic? Sign up to ask in the talk tab.

Difference between revisions of "CPP/Syntax/Includes"

From NetSec
Jump to: navigation, search
(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 ...")
(No difference)

Revision as of 23:38, 15 July 2012

 
#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.