fatal error C1010 - “stdafx.h” in Visual Studio how can this be corrected?

后端 未结 3 1262
粉色の甜心
粉色の甜心 2020-12-04 14:18

I compile the following code but I get a compile error in Visual Studio that I cannot understand.

#include 

using namespace std;

int main()         


        
3条回答
  •  无人及你
    2020-12-04 14:54

    The first line of every source file of your project must be the following:

    #include 
    

    Visit here to understand Precompiled Headers

提交回复
热议问题