Files
Linux-C-Notes/Chapter03/IO/gets_puts.c

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);
}