2016年11月29日火曜日

開発環境

Cリファレンスマニュアル (3世,サムエル・P. ハービソン(著)、ジュニア,ガイ・L. スティール(著)、3,Samuel P. Harbison(原著)、Jr.,Guy L. Steele(原著)、玉井 浩(翻訳)、エスアイビーアクセス)の第1部(C言語)、4章(宣言)、4.10(練習問題)、1.を取り組んでみる。

1.

コード(Emacs)

#include <stdio.h>


int main() {
  {
    /* extern double f(); */
    int f;
    /* typedef int f; */
    struct f {int f, g;};
    /* union f{ int x, y;}; */
    /* enum {f, b, s }; */
  f:
    ;
  }
}

入出力結果(Terminal)

$ gmake sample2
cc     sample2.c   -o sample2
$ ./sample2
$

0 コメント:

コメントを投稿