fork download
  1.  
  2. #include<stdio.h>
  3.  
  4. int main(void)
  5. {
  6. int c;
  7.  
  8. while((c=getchar())!=EOF)
  9. {
  10.  
  11. if( c == ' ' || c == '\n' || c == '\t')
  12. putchar('\n');
  13. else
  14. putchar('*');
  15. }
  16. return 0;
  17. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
Standard output is empty