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. printf("\n");
  15. }
  16. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
 * * * * * * *
 * * * * * * *
 * * * * * * *
 * * * * * * *
 * * * * * * *