2014年5月18日日曜日

開発環境

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

その他参考書籍

金庫破り(p.242)

コード(BBEdit, Emacs)

sample242.c

#include <stdio.h>

#include "sample242.h"

int main(int argc, char *argv[])
{
  swag gold = {"GOLD!", 1000000.0};
  combination numbers = {&gold, "6502"};
  safe s = {numbers, "RAMACON250"};

  puts(s.numbers.swag->description);
  puts((*(s.numbers.swag)).description);
  
  return (0);
}

Makefile

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

all: sample242

sample242: $(OBJ)
 $(CC) $(CFLAGS) -o sample242 $(OBJ)

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

clean:
 rm -rf sample242 sample242.o

入出力結果(Terminal)

$ make && ./sample242
cc -g -Wall -c sample242.c
cc -g -Wall -o sample242 sample242.o
GOLD!
GOLD!
$

0 コメント:

コメントを投稿