fork download
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. int c;
  6.  
  7. while(c=(getchar() !=EOF))
  8. {
  9. printf("%d\n", c);
  10. }
  11. }
Success #stdin #stdout 0s 9432KB
stdin
1 2 3 4
stdout
1
1
1
1
1
1
1