fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int i,j;
  6.  
  7. for (i = 1; i <= 5; i++)
  8. {
  9. for (j = 5; j <= 1; j--)
  10. {
  11. printf("☆");
  12. }
  13. printf("\n");
  14. }
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 4464KB
stdin
Standard input is empty
stdout