比如代码如下:#include<stdio.h>
#include<stdbool.h>
bool Bool(){
return true;
}
int main()
{
if(Bool()){
printf("Ok");
}
return 0;
}在 DevC++ 里面 可以正确运行, 并输出,OK但是在 VS2010 里面出现: fatal error C1083: 无法打开包括文件:“stdbool.h”: No such file or directory怎样可以解决这个问题?是自己添加这个头文件吗? 怎样添加
添加回答
举报
0/150
提交
取消