红联Linux门户
Linux帮助

在linux下学习c++

发布时间:2008-01-03 20:40:40来源:红联作者:criptshell
debian
安装了libstdc++6-dev
没想到最简单的一个例子都无法编译.

引用:
#include
using namespace std;

int main()
{
cout< <"hello world!" ;
return 0;
}


然后用cc编译,居然无法通过,google之,发现要用g++来编译.
g++ study1.cxx
哦?为什么没有生成可执行程序?
原来还要加一个-o 参数.
文章评论

共有 1 条评论

  1. drunkfish 于 2008-01-04 19:10:58发表:

    g++ hello.cpp -o a.out