最も簡単な例

 Cプログラムの最初の例としては文字の印字がお約束です.

ソースリスト

#include <stdio.h>
 
main() {
  printf("First C\n");
}

上記の実行結果

First C

ワンポイント


前に戻る