learn_c/intro/read_char.c

14 lines
160 B
C

#include <stdio.h>
/* copy input to output; 1st version */
main()
{
int c;
c = getchar();
while (c != EOF) {
putchar(c);
c = getchar(c);
}
}