安装了libstdc++6-dev
没想到最简单的一个例子都无法编译.
引用:#include
using namespace std;
int main()
{
cout< <"hello world!" ;
return 0;
}
然后用cc编译,居然无法通过,google之,发现要用g++来编译.
g++ study1.cxx
哦?为什么没有生成可执行程序?
原来还要加一个-o 参数.
引用:#include
using namespace std;
int main()
{
cout< <"hello world!" ;
return 0;
}
drunkfish 于 2008-01-04 19:10:58发表:
g++ hello.cpp -o a.out