• 首先Linux要安装有gcc,若没有在Linux下输入 yum install gcc
  • .关闭编辑器,在终端上输入 gcc -o a a.c编译c程序 或者 gcc -o a.exe a.c
  • 输入**./a**运行c程序 或者 ./a.exe