dos_compilers/Mix C v251/EXAMPLES/EXAM53.C
2024-07-24 09:30:16 -07:00

12 lines
194 B
C

#include <stdio.h>
main () /* Example 5.3 */
{
/* copy a file from stdin to stdout */
int charin;
while ( (charin = getchar()) != EOF )
putchar(charin);
}