2014年5月15日木曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の5章(構造体、共用体、ビットフィールド - 独自の構造を使う)、長いエクササイズ(p.228)を解いてみる。

その他参考書籍

長いエクササイズ(p.228)

コード(BBEdit, Emacs)

sample228.c

#include <stdio.h>

#include "sample228.h"

struct fish snappy = {"スナッピー", "ピラニア", 69, 4,
                      {{"肉", 0.1}, {"ジャグジーでの泳ぎ", 7.5}}};

void label(struct fish a)
{
  printf("名前:%s\n種類:%s\n%i本の歯、%i才\n",
         a.name, a.species, a.teeth, a.age);
  printf("餌は%2.2fキロの%sを与え、%sを%2.2f時間行わせます\n",
         a.care.food.weight, a.care.food.ingredients,
         a.care.exercise.description, a.care.exercise.duration);
}

int main(int argc, char *argv[])
{
  label(snappy);
  
  return (0);
}

Makefile

CC=cc
CFLAGS = -g -Wall
SRC=sample228.c
OBJ=sample228.o

all: sample228

sample228: sample228.o
 $(CC) $(CFLAGS) -o sample228 $(OBJ)

sample228.o: sample228.h sample228.c
 $(CC) $(CFLAGS) -c sample228.c

clean:
 rm -rf sample228 sample228.o

入出力結果(Terminal)

$ make && ./sample228
cc -g -Wall -c sample228.c
cc -g -Wall -o sample228 sample228.o
名前:スナッピー
種類:ピラニア
69本の歯、4才
餌は0.10キロの肉を与え、ジャグジーでの泳ぎを7.50時間行わせます
$

0 コメント:

コメントを投稿