fork download
  1. /* Helloプログラム これは最初のプログラム
  2.  
  3.  コメントを複数行につなげています
  4. */
  5.  
  6. #include <stdio.h>
  7.  
  8. main()
  9. {
  10. printf("むかしむかし");
  11. printf("あるところに\n");
  12. printf("なかのよい");
  13. printf("学生さんたちがいました\n");
  14. }
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
むかしむかしあるところに
なかのよい学生さんたちがいました