c-basic/echo.c

9 lines
90 B
C
Raw Normal View History

2022-11-24 21:04:54 +01:00
#include <stdio.h>
int main() {
char s[100];
gets(s);
printf("%s\n", s);
return 0;
}