2014年3月30日日曜日

開発環境

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

その他参考書籍

エクササイズ(p.263)

コード(BBEdit, Emacs)

sample263.c

#include <stdio.h>

typedef struct {
  unsigned int first_visit:1;
  unsigned int com_again:1;
  unsigned int fingers_lost:4;
  unsigned int shark_attack:1;
  unsigned int days_a_week:3;
} survey;

int main(int argc, char *argv[])
{
  survey s = {1, 1, 10, 1, 7};
  
  printf("%d, %d, %d, %d, %d\n", s.first_visit, s.com_again, s.fingers_lost,
         s.shark_attack, s.days_a_week);
  return (0);
}

Makefile

all: sample263

sample263: sample263.c
 cc -g -o sample263 sample263.c

入出力結果(Terminal)

$ make && ./sample263
cc -g -o sample263 sample263.c
1, 1, 10, 1, 7
$

0 コメント:

コメントを投稿