c语言gets函数的使用需要声明了,可以使用scanf(“%s”,a)这样;
```#include<stdio.h> char *gets (char *str);//声明 int main() { char c[20]; gets(c); puts(c); return 0; }
相关推荐