Posts tagged as includes


C/C++ : Includes

C++ includes take one of two forms: #include <> or #include "". The only difference is that the former tells the compiler to look within the STL (Standard Template Library) for the source code, while the latter instructs the compiler to look in the local project folder first. If the compiler doesn't find the file in the local folder, it will search the STL.