dos33fsprogs/games/keen/story/make_story.c
2024-05-06 01:32:33 -04:00

19 lines
227 B
C

#include <stdio.h>
int main(int argc, char **argv) {
char string[BUFSIZ];
char *result;
int inverse=0;
while(1) {
result=fgets(string,BUFSIZ,stdin);
if (result==NULL) break;
printf("%s",string);
}
return 0;
}