1. 编译 C 程序2. 运行 C 程序 1. 编译 C 程序$ gcc Solution.c 如果不指定编译后的文件名的话,编译完成后会生成 a.out 文件,想要自定义文件的话,可以加上 -o 参数。 $ gcc Solution.c -o Solution.out 2. 运行 C 程序$ ./Solution.out