c_cpp 猫コマンドを作る!stdio版
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 猫コマンドを作る!stdio版相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]){
int i;
if(argc < 2){
fprintf(stderr, "%s: file name not given\n", argv[0]);
exit(1);
}
for(i=1; i<argc; i++){
FILE *f;
int c;
f = fopen(argv[i], "r");
if(!f){
perror(argv[i]);
exit(2);
}
while((c = fgetc(f)) != EOF){
if(putchar(c) < 0) exit(3);
}
fclose(f);
}
exit(0);
}
以上是关于c_cpp 猫コマンドを作る!stdio版的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp LSコマンドを作ってみた
sh WordPress的开発环境作るコマンド
text 树コマンドをFZFで操作する
ruby Rubyからgitコマンドを実行して情报を取得
java コマンドプロンプト上にピラミッドを描く
sh POSIXに入っているコマンドののの作成org版