Files
Linux-C-Notes/C03-输入输出专题/IO/gets_puts.c
2024-05-26 15:39:14 +08:00

13 lines
142 B
C

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