hello world问题

C++语言 码拜 9年前 (2016-04-12) 1112次浏览
紧急求帮助,用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;
}
解决方案

10

创建的是控制台工程吗

5

是版本的问题吗    本人在VS2012上可以运行

5

大致是没有头文件或路径有误吧

5

#include < stdio.h > 头文件有问题
vs的话默认是 stdafx.h 包含这个头文件

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明hello world问题
喜欢 (0)
[1034331897@qq.com]
分享 (0)