Advertisement
wandrake

Untitled

Jul 4th, 2012
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5.     char* a = (char*)malloc(255*sizeof(char));
  6.     fscanf(stdin, "%[^\EOF]", a);
  7.     fprintf(stderr, "%s", a);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement