fork download
  1. #include <stdio.h>
  2.  
  3. int main ()
  4. {
  5. char s[100],i;
  6. gets(s);
  7. for (i=0; i<strlen(s); i++)
  8. {
  9. printf("%c\n", s[i]);
  10.  
  11. }
  12.  
  13.  
  14. }
  15.  
  16.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
Standard output is empty