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 (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の5章(構造体、共用体、ビットフィールド: 独自の構造を使う)、金庫破り(p.242)を解いてみる。
その他参考書籍
- 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.242)
コード(BBEdit, Emacs)
sample242.c
#include <stdio.h>
typedef struct swag_s {
const char *description;
float value;
} swag_s;
typedef struct combination_s {
union {
struct swag_s;
swag_s *swag;
};
const char *sequence;
} combination_s;
typedef struct {
union {
struct combination_s;
combination_s numbers;
};
const char *make;
} safe_s;
int main(int argc, char *argv[])
{
safe_s s = {.description="GOLD!", .value=1000000.0, .sequence="6502",
.make="RAMACON250"};
printf("%s\n", s.description);
return (0);
}
入出力結果(Terminal)
$ ./sample242 GOLD! $
0 コメント:
コメントを投稿