插入:i
命令模式下:
shift+i行首,shift+a行尾
shift+o在上一行插入
x删除光标所在为位置的字符
dd删除当前行
命令模式下:
shift+i行首,shift+a行尾
shift+o在上一行插入
x删除光标所在为位置的字符
dd删除当前行
2018-03-27
最新回答 / mengxuanmenghui
不明白的是:老师的是gcc max.o min.o hello.c -o hello.out,hello.c中可以没有声明,编译也没问题,而我的则显示warning:隐式声明函数‘max.c’和‘min.c’
2018-03-12
最赞回答 / lonisletend
报错大概意思是文件格式不能识别。lx1 C语言程序要以.c结尾,可以执行以下命令:<...code...>然后重新编译<...code...>
2018-03-05
我这个:
如果在hello.c中添加int max(int a,int b);那么 gcc hello.c max.c -o main.out不会出错,
如果在hello.c中添加#include "max.h" 那么 gcc hello.c -o main.out不会出错
有一样的赞一个
如果在hello.c中添加int max(int a,int b);那么 gcc hello.c max.c -o main.out不会出错,
如果在hello.c中添加#include "max.h" 那么 gcc hello.c -o main.out不会出错
有一样的赞一个
2018-02-15