kykint

Initial implementation

Showing 1 changed file with 14 additions and 0 deletions
1 +#include <stdio.h>
2 +
3 +int main(void) {
4 + printf("Input a string\n");
5 +
6 + while (1) {
7 + char str[50];
8 + scanf("%s", str);
9 + printf("%s\n", str);
10 + }
11 +
12 + return 0;
13 +}
14 +