Files
Linux-C-Notes/C03-输入输出专题/IO/gets_puts.c
2024-04-28 13:10:56 +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);
}