#include main() { int i, c; /*exit(1);*/ for (i = 0, c = getchar(); c != EOF; i++, c = getchar()) { putchar(c); if (i == BUFSIZ) { exit(1); } } }