授業/C言語基礎/変数/練習問題/02A-1 のバックアップソース(No.1)

*解答例1 [#jfe8e4ee]
#geshi(c){{
#include <stdio.h>

int main(void) {
  int x = 3;
  printf("%d\n", x);
}
}}


*解答例2 [#ra3a45d2]
#geshi(c){{
#include <stdio.h>

int main(void) {
  int x;
  x = 3;
  printf("%d\n", x);
}
}}

トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS