弱弱的问一下
我在linux下编程,在那个vi编辑器里面编写c代码的话头文件#include《stdio.h》,能编译通过的,本人习惯c++,然后把头文件换成#include《iosream》 using namespace std; 为什么编译就报错了,报错是说这个头文件不存在,那么gcc下c++的头文件是什么呢,哪有这方面的资料,求指点,感激涕零
用 g++ 编译。
#include <iostream> //不要用iostream.h using namespace std; int main() { cout<<"hello\n"<<endl; return 0; }
编译 g++ c.C -o c 运行 c