fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int a=1, b=2, c=3 ;
  8.  
  9. printf("1は大吉\n");
  10. printf("2は中吉\n");
  11. printf("3は小吉\n");
  12.  
  13. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
1は大吉
2は中吉
3は小吉