标签:退出 安装环境 运行 -o 系统 问题 mil nbsp span
1.运行环境未及时安装
2.命令不熟练
3.上课状态不好
1.及时安装环境并熟悉运行
2.参考Linux操作系统实用教程并百度一些问题的解决办法
3.及时调整自己状态
用vi test.c 创建.c文件
#include <stdio.h>
int main(){
printf("hello word\n");
}
并用 esc--》:wq 保存并退出
gcc test.c -o test
ls // 查询
./test //运行
gcc -E test.c -o test.i //将.c文件改为.i文件
gcc -S test.i -o test.s //将.i文件改为.s文件
gcc -C test.c -o test.o //将.c文件改为.o文件
标签:退出 安装环境 运行 -o 系统 问题 mil nbsp span
原文地址:http://www.cnblogs.com/156005140qq/p/6741057.html