C++ library path inclusion

c++

Solution

They are to indicate the included file paths' are relative to the including file's actual path.

`.` points to the including file's actual directory `..` points to the including file's actual directories' parent diretory

Problem

i found C++ libraries could be included this way: ``` #include "..\example.h" #include ".\another_example.h" ``` what is the dots used for?

Original source