完结第三章

This commit is contained in:
lzy
2024-03-20 18:05:59 +08:00
parent 308c9753bb
commit c120650656
4 changed files with 286 additions and 1 deletions

13
Chapter3/IO/gets_puts.c Normal file
View File

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