Head First C ―頭とからだで覚えるCの基本
(オライリージャパン)
David Griffiths (著) Dawn Griffiths (著)
中田 秀基(監訳)(翻訳) 木下 哲也 (翻訳)
開発環境
- OS X Yosemite - Apple (OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- C (プログラミング言語)
- LLVM/Clang (コンパイラ, Xcode - Apple)
Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の10章(プロセス間通信: お話は楽しい)、長いエクササイズ(p.460)を解いてみる。
その他参考書籍
- 21st Century C: C Tips from the New School
- プログラミング言語C 第2版 ANSI規格準拠 (B.W. カーニハン D.M. リッチー (著)、 石田 晴久 (翻訳)、共立出版)
- プログラミング言語Cアンサー・ブック 第2版 (クロビス・L.トンド、スコット・E.ギンペル(著)、矢吹 道郎(翻訳))
- C実践プログラミング 第3版 (Steve Oualline (著)、 望月 康司 (監訳) (翻訳)、 谷口 功 (翻訳)、 オライリージャパン)
長いエクササイズ(p.460)
コード(BBEdit, Emacs)
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
int score = 0;
void end_game(int sig) {
printf("\n最終得点: %d\n", score);
exit (0);
}
typedef void (*handler_fn)(int);
int catch_signal(int sig, handler_fn handler) {
struct sigaction action;
action.sa_handler = handler;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
return sigaction (sig, &action, NULL);
}
void times_up(int sig) {
printf("\n時間切れ!\n");
raise(SIGINT);
}
int main() {
catch_signal(SIGALRM, times_up);
catch_signal(SIGINT, end_game);
srandom (time (0));
while (1) {
int a = random() % 11;
int b = random() % 11;
char txt[4];
alarm(5);
printf("\n%dかける%dはいくつですか? ", a, b);
fgets(txt, 4, stdin);
char *end;
int answer = strtol(txt, &end, 10);
if (answer == a * b) score++;
else printf("\n間違いです!得点: %d\n", score);
}
}
入出力結果(Terminal)
$ crun.sh sample460 clang ... 0かける8はいくつですか? 0 2かける2はいくつですか? 4 2かける1はいくつですか? 時間切れ! 最終得点: 2 $ ./sample460 2かける3はいくつですか? C-c C-c 最終得点: 0 $ ./sample460 10かける6はいくつですか? 60 5かける3はいくつですか? 15 3かける8はいくつですか? C-c C-c 最終得点: 2 $ ./sample460 9かける3はいくつですか? 時間切れ! 最終得点: 0 $
0 コメント:
コメントを投稿