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.250)を解いてみる。
その他参考書籍
- 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.250)
コード(BBEdit, Emacs)
sample250.c
#include <stdio.h>
typedef union lemon_lime {
float lemon;
int lime_pieces;
} lemon_lime;
typedef struct {
float tequila;
float cointreau;
union {
lemon_lime citrus;
union lemon_lime;
};
} margarita;
void margarita_print_lemon(margarita m)
{
printf("%2.1f単位のテキーラ\n%2.1f単位のコアントロー\n%2.1f単位のジュース\n",
m.tequila, m.cointreau, m.lemon);
}
void margarita_print_lime(margarita m)
{
printf("%2.1f単位のテキーラ\n%2.1f単位のコアントロー\n%i切れのライム\n",
m.tequila, m.cointreau, m.lime_pieces);
}
int main(int argc, char *argv[])
{
margarita_print_lemon((margarita){.tequila=2.0, .cointreau=1.0, .lemon=0.5});
margarita_print_lemon((margarita){.tequila=2.0, .cointreau=1.0, .lemon=2});
margarita_print_lime((margarita)
{.tequila=2.0, .cointreau=1.0, .lime_pieces=1});
margarita_print_lemon((margarita){.tequila=2.0, .cointreau=1.0, .lemon=1});
margarita_print_lemon((margarita){.tequila=2.0, .cointreau=1.0, .lemon=2});
}
入出力結果(Terminal)
$ crun.sh sample250 ... sample250.c:13:5: warning: anonymous structs are a Microsoft extension [-Wmicrosoft] union lemon_lime; ^~~~~ 1 warning generated. 2.0単位のテキーラ 1.0単位のコアントロー 0.5単位のジュース 2.0単位のテキーラ 1.0単位のコアントロー 2.0単位のジュース 2.0単位のテキーラ 1.0単位のコアントロー 1切れのライム 2.0単位のテキーラ 1.0単位のコアントロー 1.0単位のジュース 2.0単位のテキーラ 1.0単位のコアントロー 2.0単位のジュース $
0 コメント:
コメントを投稿