2014年9月3日水曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の6章(データ構造と動的メモリ: 架け橋を築く)、コードマグネット(p.273)を解いてみる。

その他参考書籍

コードマグネット(p.273)

コード(BBEdit, Emacs)

sample273.c

#include <stdio.h>

#include "sample273.h"

void display(island *start)
{
  island *i = start;
  for (; i != NULL; i = i->next)
    printf("名前:%s 営業時間:%s-%s\n", i->name, i->opens, i->closes);
}

int main(int argc, char *argv[])
{
  amity.next = &craggy;
  craggy.next = &isla_nublar;
  isla_nublar.next = &shutter;
  shutter.next = &skull;

  display(&amity);

  return (0);
}

Makefile

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

all: sample273

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

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

clear:
 rm -rf sample273 $(OBJ)

入出力結果(Terminal)

$ make && ./sample273
cc -g -Wall -c sample273.c -o sample273.o
cc -g -Wall sample273.o -o sample273
名前:アミティ 営業時間:9:00-17:00
名前:クラッギー 営業時間:09:00-17:00
名前:イスラヌブラル 営業時間:09:00-17:00
名前:シャッター 営業時間:09:00-17:00
名前:スカル 営業時間:09:00-17:00
$

0 コメント:

コメントを投稿