This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
s4-c/P64-2.c

11 lines
138 B
C

#include <stdio.h>
int main() {
char c;
do {
c = getchar();
if (c != EOF) putchar(c);
} while (c != EOF);
}