kykint

Initial implementation

Showing 1 changed file with 14 additions and 0 deletions
#include <stdio.h>
int main(void) {
printf("Input a string\n");
while (1) {
char str[50];
scanf("%s", str);
printf("%s\n", str);
}
return 0;
}