紧急求帮助,用visual studio 2015运行hello world程序总是显示无法打开包括文件: “stdio.h”: No such file or directory,问一下是什么问题?谢谢
试过两种代码如下:
1.
#include < stdio.h >
int main()
{
printf(“hello, world \n”);
return 0;
}
2.
#include “stdafx.h”
#include<iostream>
int main()
{
std::cout << “Hello, World\n”;
return 0;
}
试过两种代码如下:
1.
#include < stdio.h >
int main()
{
printf(“hello, world \n”);
return 0;
}
2.
#include “stdafx.h”
#include<iostream>
int main()
{
std::cout << “Hello, World\n”;
return 0;
}
解决方案
10
创建的是控制台工程吗
5
是版本的问题吗 本人在VS2012上可以运行
5
大致是没有头文件或路径有误吧
5
#include < stdio.h > 头文件有问题
vs的话默认是 stdafx.h 包含这个头文件
vs的话默认是 stdafx.h 包含这个头文件