Include

There are 2 ways to include

#include <somename> // To include some built-in c header file
#include "somename" // User custom header file

If using the first one, compiler will only search on the built-in folders. Using the second one, it will search in the current folder