#include<stdio.h> int main() { char st[5]; printf("input string:\n"); gets(st); //这里用scanf("%s",st);也行 printf("%s\n",st); //输出字符串 }