如何在linux下编译⼀运行C⼀C++程序

2024-11-25 20:30:43
推荐回答(1个)
回答1:

首先你要有编译器
然后 c语言 gcc test.c -o test
./test
c++
g++ test.C -o test
./test

附上参考 http://www.osetc.com/archives/357.html