在ubuntu下搭建C++的开发环境
遇到std::init未定义
代码段为
#include <iostream> using namespace std; int main() { cout << "Hello world!" <<endl; return 0; }命令行:
gcc -o fileio fileio.cpp
把gcc改为g++
原文链接:https://www.f2er.com/ubuntu/350381.html在ubuntu下搭建C++的开发环境
遇到std::init未定义
代码段为
#include <iostream> using namespace std; int main() { cout << "Hello world!" <<endl; return 0; }命令行:
gcc -o fileio fileio.cpp
把gcc改为g++
原文链接:https://www.f2er.com/ubuntu/350381.html