標準輸入流 輸出流 錯誤流
stdin 默認屏幕
stdout 默認鍵盤
stderr
linux把所有東西當作文件處理
printf("") 是對fprintf(stdout,"")函數的封裝.
scanf("") 是對fscanf(stdin,"")函數的封裝
stdin 默認屏幕
stdout 默認鍵盤
stderr
linux把所有東西當作文件處理
printf("") 是對fprintf(stdout,"")函數的封裝.
scanf("") 是對fscanf(stdin,"")函數的封裝
2017-02-27
甲鐵城的卡巴司機
作者: liuyubobobo
鏈接:http://www.xianlaiwan.cn/article/16359
來源:慕課網
本文原創發布于慕課網 ,轉載請注明出處,謝謝合作!
作者: liuyubobobo
鏈接:http://www.xianlaiwan.cn/article/16359
來源:慕課網
本文原創發布于慕課網 ,轉載請注明出處,謝謝合作!
2017-02-26
i-當前光標前面插入字符 a-當前光標后面插入字符
esc-返回命令模式 :wq-保存退出
shift+a-跳到末尾插入字符 shift+i-行首
o-當前行下面開一行插入字符 shift+o-上一行
光標一到某個位置按x刪除
命令模式下按兩次d刪除整行
esc-返回命令模式 :wq-保存退出
shift+a-跳到末尾插入字符 shift+i-行首
o-當前行下面開一行插入字符 shift+o-上一行
光標一到某個位置按x刪除
命令模式下按兩次d刪除整行
2017-02-26