Severity Code Description Project File Line Suppression State
Error (active) E2904 PCH warning: header stop not at file scope. An IntelliSense PCH file was not generated. FCEC c:\Users\lenovo\Desktop\Code Stuff The IV\FCEC\FCEC\main.c 4
In my C projects, I get this error on the same line with #include "Engine.h"
Did you forget to #include <stdafx.h> in main.c? If your project uses precompiled headers, this line must be the first non-comment line in every .c and .cpp file.
I'm not exactly sure why that fixes it, but please note that you should have proper header guards in C and C++. (Most if not all compilers support #pragma once, but it's technically non-standard).