摘要: Linux 下使用GCC/G++编译C++程序 例程: /* hello.cpp */ #include <iostream> using namespace std; int main() { cout << "hello cpp"<<endl; return 0; } 使用GCC编译器 直接使用 阅读全文
posted @ 2023-01-10 21:21 3的4次方 阅读(1334) 评论(0) 推荐(0) 编辑