dos_compilers/Mix C v251/EXAMPLES/EXAM52.C

16 lines
326 B
C++
Raw Normal View History

2024-07-24 18:30:16 +02:00
/*include standard I/O header file */
#include <stdio.h>
main () /* Example 5.2 */
{
/* this program reads characters from stdin
and writes them to stdout */
int charin;
/* Type Ctrl Z to terminate the program */
while ( (charin = getc(stdin)) != EOF )
putc(charin, stdout);
}