This file does not exist. Do you want to build it? 我用VC++运行程序的时候老是出现这个

This file does not exist. Do you want to build it?
我用VC++编写程序的时候程序没有错误,我就是要看结果的时候为什么总是显示:
This file does not exist. Do you want to build it?

在你的工程中,某个文件名所对应的文件是不存在的会导致这样的提示。
仔细检查“FileView”中的文件,看看哪个文件是否改过名字没有删除。
温馨提示:答案为网友推荐,仅供参考
第1个回答  2019-01-27
先点击单文件编译,再全部编译即可。
第2个回答  2012-11-20
可能是你的一些符号漏了
例如
#include<stdio.h>
int main()
{
printf("hello");
return 0;
}
如果;没了就会有你的情况
第3个回答  2012-11-14
这是你没有编译的原因,编译一下就行了。
第4个回答  2012-11-12
文件不存在,你是否想建立此文件
相似回答