What do you think?
Rate this book
160 pages, Paperback
First published January 1, 1989
/* compiles cleanly with -Wall on GCC 5.3.0 */
#include
#include
int main(int argc, char *argv[]) {
int c;
setbuf(stdout, malloc(BUFSIZ));
while ((c = getchar()) != EOF)
putchar(c);
return 0;
}