02A-1

| Topic path: Top / 授業 / C言語基礎 / 変数 / 練習問題 / 02A-1

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

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


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

int main(void) {
  int x;
  x = 3;
  printf("%d\n", x);
  return 0 ;
}
}}
トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS