如何在Linux下写C/C++程序

1、使用Linux自带的gcc。

在VI中编辑源码,完成后保存。退出VI,再用gcc或g++在shell里编译。运行的时候只要输入编译好的执行程序文件名,回车。

示例:

用vi编辑一个hello.c

//hello.c

#include

int main(void){

printf(“Hello world!\n”);

return 0;

}

退到命令行

gcc hello.c -o hello

./hello

2、使用Anjuta,支持源码级调试,编译,运行就像VC一样方便。

3、使用KDevelop。