fork download
  1. #include<stdio.h>
  2.  
  3. int main() {
  4. int i, j;
  5. char ch = '☺';
  6.  
  7. for (i = 4; i >= 0; i--) {
  8. printf("\n");
  9. for (j = 0; j < i; j++)
  10. printf("%c", ch);
  11. }
  12. return(0);
  13. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
����
���
��
�