Head First C ―頭とからだで覚えるCの基本
(オライリージャパン)
David Griffiths (著) Dawn Griffiths (著)
中田 秀基(監訳)(翻訳) 木下 哲也 (翻訳)
開発環境
- OS X Mavericks - Apple、たまにFreeBSD 10(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- C (プログラミング言語)
- Clang (コンパイラ)
Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の9章(プロセスとシステムサービス: 限界を超える)、コードマグネット(p.399)を解いてみる。
その他参考書籍
- プログラミング言語C 第2版 ANSI規格準拠 (B.W. カーニハン D.M. リッチー (著)、 石田 晴久 (翻訳)、共立出版)
- プログラミング言語Cアンサー・ブック 第2版 (クロビス・L.トンド、スコット・E.ギンペル(著)、矢吹 道郎(翻訳))
- C実践プログラミング 第3版 (Steve Oualline (著)、 望月 康司 (監訳) (翻訳)、 谷口 功 (翻訳)、 オライリージャパン)
コードマグネット(p.399)
コード(BBEdit, Emacs)
test_sample399.c
#include <stdio.h> #include <stdlib.h> #include "sample399.h" int main(int argc, char *argv[]) { char comment[80]; char cmd[120]; fgets(comment, 80, stdin); sprintf(cmd, "echo '%s %s' >> reports.log", comment, now()); system(cmd); return (0); }
Makefile
CC=cc CFLAGS = -g -Wall SRC=test_sample399.c sample399.c OBJ=test_sample399.o all: test_sample399 test_sample399: sample399.h sample399.o test_sample399.c $(CC) $(CFLAGS) sample399.o test_sample399.c -o test_sample399 sample399.a: sample399.h sample399.c $(CC) $(CFLAGS) sample399.c -o sample399.o clean: rm -rf test_sample399 sample399.o
入出力結果(Terminal)
$ make && ./test_sample399 cc -g -Wall sample399.o test_sample399.c -o test_sample399 チェックイン1 $ cat reports.log チェックイン1 Thu Jun 5 14:45:00 2014 $ ./test_sample399 チェックイン2 $ cat reports.log チェックイン1 Thu Jun 5 14:45:00 2014 チェックイン2 Thu Jun 5 14:45:28 2014 $
0 コメント:
コメントを投稿