RosettaCodeData/Task/Copy-stdin-to-stdout/C/copy-stdin-to-stdout.c

10 lines
110 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include <stdio.h>
int main(){
char c;
while ( (c=getchar()) != EOF ){
putchar(c);
}
return 0;
}