fork(1) download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. printf("今日の天気は %d 度です\n",3+1);
  8. printf("今日は、%d月%d日です\n",5,9);
  9. printf("今日は、%d年、%d月、%d日です",2024,5,9);
  10. }
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
今日の天気は 4 度です
今日は、5月9日です
今日は、2024年、5月、9日です