C程序的创建 cd Desktop //进入桌面 touch 1-1.c //新建文件1-1.c gedit 1-1.c //使用gedit打开1-1.c 在编辑器内编写代码并保存 gcc -o 1-1 1-1.c //生成编译文件 ./1-1 //执行文件