This is my first time working with header files, and I have a source code and I'm trying to include my header file. The name of my header file is called ccc_time.h and i have #include "ccc_time.h" written in the beginning of my source file which is just called source.cpp however visual studio says no such header ccc_time.h file or directory exists.
The header file I did not write, it was assigned for my homework and i don't think I'm suppose to modify it. In the beginning of the header file, it reads
#ifndef CCC_TIME_H
#define CCC_TIME_H
I was also given another file called ccc_time.cpp and it has no problem recognizing the header file ccc_time.h but i can't seem to get my source.cpp to recognize that header file
additional include directoriesif it is not in the same folder as the .cpp fileccc_time.hin the same directory assource.cpp?