#include <stdio.h> //头文件写完整 void main() { char c[100]; scanf("%s",c); //格式控制符%写在左边 printf("%s",&c); //输出字符串需要加& }