Hello,
I have a simple question. Say I have two files in a folder "Cpp Projects". One file is called "main.h", and the other is inside another folder, say, "Cpp Files", and it is called "main.cpp". Thus, their filenames would be:
"...\Cpp Projects\main.h"
"...\Cpp Projects\Cpp Files\main.cpp"
Is there a way to #include main.h in main.cpp without having to enter the entire filename (for example, "C:\Users\me\Documents\Cpp Projects\main.h")?
Thanks in advance.