fork(1) download
  1. /* ここがコメント行になります。
  2.   複数行になってもok
  3.   プログラムの説明を書いておきます。
  4.   Helloプログラム */
  5.  
  6. #include <stdio.h>
  7.  
  8. main()
  9. {
  10. printf("今日は %d 年 %d 月 %d 日です。\n", 2025, 5, 12+7*4);
  11. }
Success #stdin #stdout 0s 5332KB
stdin
Standard input is empty
stdout
今日は 2025 年 5 月 40 日です。