2014年12月16日火曜日

開発環境

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 come_again: 1;
  unsigned int fingers_lost: 4;
  unsigned int shark_attack: 1;
  unsigned int days_a_week: 3;
} survey;

int main()
{
  survey s = {.first_visit=1, .come_again=1, .fingers_lost=10,
              .shark_attack=1, .days_a_week=7};
  printf("%i, %i, %i, %i, %i\n", s.first_visit, s.come_again, s.fingers_lost,
         s.shark_attack, s.days_a_week);
}

入出力結果(Terminal)

$ crun.sh sample263
...
1, 1, 10, 1, 7
$

0 コメント:

コメントを投稿