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