Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- char ch; //i did with char, it's working, watch for answer here
- //https://otvet.mail.ru/question/209913858
- //printf("%d\n",EOF);
- while( (ch = getchar()) !=EOF)
- {
- putchar(ch);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement