gcc
查看系统中gcc版本
gcc -v
准备被编译的程序
main.c
#include <stdio.h> int main(void) { printf("hello world\n"); return 0; }
编译命令
在该main.c 所处的文件夹下打开终端
执行
gcc main.c -o test
将main.c编译为可执行程序test
执行该文件
./test
结果