I tried to compile some code and I got the error fatal error: C1083: Cannot open include file: 'Utils.h': No such file or directory. My program starts with
Code:
#include "Utils.h"
just create new header file and call it Utils
This error just means that the compiler cannot find your file Utils.h - check that you have spelled it correctly, and the file is in the same folder that you are building from.