紧急求助!这个问题竟然和文件名有关?
本帖最后由 2764315761 于 2014-7-26 14:55 编辑大家看一下这句代码:
#include<stdio.h>
main()
{
printf("hello word\n");
system("pause");
}
在文件后缀名为*.c的时候是正确的:
当时后缀名改成cpp的时候确是错误的:
这到底是怎么回事啊?紧急求助!
编译的方式不一样吧 不懂。。。
本帖最后由 浮砂 于 2014-7-26 16:00 编辑
上面的应该是 #include <stdio.h> 楼主 一个是C语言文件 一个是Cpp 也就是C++ 两个语法不一样的哦 system()要包含头文件 #include<windows.h>
基本写法
C:
#include<stdio.h>
int main
{
return 0;
}
C++:
#include <iostream.h>
using namespace std;
int main()
{
reutrn 0;
}
由此看出C和C++完全不是一回事
C是c的文件cpp是C++的文件
C和C++不是一回事啊 谢谢大家,我明白了{:7_157:}
页:
[1]