C++ – Can’t open header file in C++

cvisual c++

I have a header file called simpio.h, which is in the same folder as the file which is including it in its header. However, I keep on getting the error "Cannot open include file: 'simpio.h': No such file or directory." I am using Visual C++ 2008 Express Edition. Help would be appreciated.

Thanks

Best Answer

You need to use double quotes:

#include "simpio.h"