关于scanf的运用问题
#include<stdio.h>int main()
{
char a, b, c;
scanf_s("%c%c%c", &a, &b, &c);
printf("%c,%c,%c\n", a, b, c);
return 0;
}
由于平时我用的字符都是gets,这个问题一直没注意到,直到今天有个朋友问我我才发现,这样的代码我看着感觉没问题
但在VS上就是会运行错误(0x7AAE98F1 (ucrtbased.dll)处(位于 ConsoleApplication1.exe 中)引发的异常: 0xC0000005: 写入位置 0x00DE1023 时发生访问冲突。)
为什么呢?关于scanf赋值字符该如何使用呢?
#include<stdio.h>
int main()
{
char a, b, c;
scanf_s("%c%c%c", &a,1, &b,1, &c,1);
printf("%c,%c,%c\n", a, b, c);
return 0;
} baige 发表于 2020-11-17 07:40
是为什么呢?
不是很理解 scanf_s(),在调用时,必须提供一个数字以表明最多读取多少位字符。
页:
[1]