Files
Linux-C-Notes/Chapter3/IO/gets_puts.c
2024-03-20 18:05:59 +08:00

13 lines
141 B
C

#include <stdio.h>
#include <stdlib.h>
#define STRSIZE 32
int main()
{
char str[STRSIZE];
gets(str);
puts(str);
exit(0);
}