C/Inupt-to-Output.c
2024-05-13 11:09:46 -05:00

8 lines
103 B
C

#include <stdio.h>
main() {
int c; /* Character */
while ((c = getchar()) != EOF)
putchar(c);
}