#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char add[20];
//输入
printf("请输入字符串的内容: \n");
gets(add);
//输出
printf("您输入的字符串的内容是: \n");
puts(add);
system("pause");
return 0;
}
原文:https://www.cnblogs.com/WangxinCode/p/14117811.html