Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5.  
  6. int main(int argc, char **argv)
  7. {
  8.  
  9. int c;
  10.  
  11. while((c=getchar())!=EOF)
  12. {
  13. putchar(c);
  14. }
  15.  
  16.  
  17.  
  18.  
  19. return(0);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement