開発環境
- OS X Mavericks - Apple(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- C (プログラミング言語)
- Clang (コンパイラ)
C実践プログラミング 第3版 (Steve Oualline (著)、 望月 康司 (監訳) (翻訳)、谷口 功 (翻訳)、オライリー・ジャパン)のⅡ部(単純なプログラミング)の14章(ファイル入出力)、14.1(ファイル関数)、14.2(変換ルーチン)、14.3(バイナリファイルとASCIIファイル)、14.4(行終端にまつわる謎)、14.5(バイナリI/O)、14.6(バッファリングの問題)、14.7(バッファリングを行わないI/O)、14.8(ファイル形式の設計)、14.10(プログラミング実習)、実習 14-1を解いてみる。
その他参考書籍
- プログラミング言語C 第2版 ANSI規格準拠 (B.W. カーニハン D.M. リッチー (著)、 石田 晴久 (翻訳)、共立出版)
- プログラミング言語Cアンサー・ブック 第2版 (クロビス・L.トンド、スコット・E.ギンペル(著)、矢吹 道郎(翻訳))
実習14-1.
コード
sample.c
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
char ch;
FILE *in_file;
int lineno;
if (argc != 2){
fprintf(stderr, "Error: Wrong number of arguments\n");
fprintf(stderr, "Usage is: sample <filename>\n");
exit (8);
}
in_file = fopen(argv[1], "r");
if (in_file == NULL){
fprintf(stderr, "Cannot open %s\n", argv[1]);
exit (8);
}
while (1){
ch = fgetc(in_file);
if (ch == EOF){
lineno++;
break;
}
if (ch == '\n'){
lineno++;
}
}
printf("ファイルの行数: %d行\n", lineno);
return (0);
}
makefile
CC=cc CFLAGS=-g sample: sample.c $(CC) $(CFLAGS) -o sample sample.c clean: rm -f sample
入出力結果(Terminal)
$ make cc -g -o sample sample.c $ ./sample Error: Wrong number of arguments Usage is: sample <filename> $ ./sample sample.c ファイルの行数: 35行 $ ./sample sample.c abcde Error: Wrong number of arguments Usage is: sample <filename> $
0 コメント:
コメントを投稿