Files not linking in C++
So I'm taking the C++ Intermediate Course. I use Android mobile. I was taking the "Seperate Files for Classes" lesson in the course where they said about creating seperate file for the prototypes (.h) and creating a source file that uses that file(.cpp). I did it in QuickEdit and some tried some other apps, but all of them were returning error that they could not find the file. Please note before replying: ⢠My files were in the same folder together, no different folders or subfolders. ⢠I'm using Android Phone ⢠The file name for linking and the file's name are exactly the same, with matching case When I run the code, I get this error: main.cpp:2:10: fatal error: 'MyClass.h' file not found #include "MyClass.h" ^~~~~~~~~~~ 1 error generated.