learn_c/intro/read_char2.c

12 lines
153 B
C
Raw Normal View History

2023-11-13 18:18:50 +00:00
#include <stdio.h>
/* copy input to output; 2nd version */
main()
{
int c;
printf("%d", EOF);
while ((c = getchar()) != EOF)
putchar(c);
}