插入: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