Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main(void) {
- char* a = (char*)malloc(255*sizeof(char));
- fscanf(stdin, "%[^\EOF]", a);
- fprintf(stderr, "%s", a);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement