字符串函数
#include void main()
{
char c[100];
scanf("s%",c);
printf("s%",c);
}
就是这么几行字,我想键盘输入字符串,然后让程序先是在屏幕上,不知道那里有问题,运行结果都是 s 。
#include <stdio.h> //头文件写完整 void main() { char c[100]; scanf("%s",c); //格式控制符%写在左边 printf("%s",&c); //输出字符串需要加& }