Let's say I've got directory a/ with two other directories b/ and c/ in it.
main.c is in b/ but I need to include to it headers.h file which is in c/, is there any way I can go one directory up from b/ to a/ and then include headers.h like this?
#include "c\headers.h"
I want to avoid specyfying the whole path
#include "C:\Program Files\a\c\headers.h"
so that wherever a/ is moved, main.c will still work fine