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