fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int i;
  8.  
  9. for(i = 1; i <= 10; i++) {
  10. printf("%d", i);
  11.  
  12. if (i < 10) {
  13. printf(",");
  14. }
  15. }
  16.  
  17. printf("\n");
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
1,2,3,4,5,6,7,8,9,10