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.  
  11. for(i=1;i<=7;i++){
  12.  
  13. printf("*");
  14.  
  15. }
  16. printf("\n");
  17. }
  18. }
  19.  
  20.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
*******
*******
*******
*******
*******