- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试制作一个程序,看看我可以用 C 中的结构做什么。但是在 scanf_s("%s", &user.name)
的主函数中出现错误:
Exception thrown at 0x5C26D3EC (ucrtbased.dll) in StructureTest.exe:
0xC0000005: Access violation writing location 0x01341000. occurred
我也得到一些compiler warnings .这是我的代码:
#include <stdio.h>
struct birthdate {
int day;
char month[9];
int year;
};
typedef struct birthdate dob;
struct info {
char name[40];
dob birthdate;
int age;
char sex[6];
char *origin;
};
void printinfo(struct info user) {
printf("---- User Data ----\n");
printf("Name: %s\n", user.name);
printf("Date of birth: %d/%s/%d\n", user.birthdate.day,
user.birthdate.month, user.birthdate.year);
printf("Age: %d\n", user.age);
printf("Sex: %s\n", user.sex);
printf("Country of origin: %s", user.origin);
}
int main() {
printf("--Please enter your info--\n");
struct info user;
printf("Please enter your name: ");
scanf_s("%s", &user.name); // <-- exception thrown here
printf("Please enter your date of birth in the format (dd/mm/yyyy): ");
scanf_s("%d %s %d", &user.birthdate.day, &user.birthdate.month,
&user.birthdate.year);
printf("Please enter your age: ");
scanf_s("%d", &user.age);
printf("Please enter your gender ([M]ale/[F]emale): ");
scanf_s("%s", &user.sex);
printf("Please enter your country of origin: ");
scanf_s("%s", &user.origin); // <- Another exception thrown here
printf("\n\n");
printinfo(user);
printf("\nPress ENTER to continue..");
getchar();
return 0;
}
我对结构还没有真正的经验,但我怀疑它可能与数组和指针有关,而且我写的名字无处可去。
最佳答案
您没有显示您提供给程序的输入。
你的程序有一些小错误和一些大错误:
首先,你对char
的分配太紧了。阵列。例如,month
birthdate
中的字段struct 只有 9 个空间来存储月份,这意味着你不能像 september
那样存储月份。这需要 9 个字符加上一个 \0
字符串末尾的 nul 字符。如果你不小心,这可能是你执行的问题。
通过 struct
是不常见的做法s 直接按值 到一个函数,因为这使得编译器将完整的结构内容复制到参数堆栈中。更常见的是通过引用传递结构,如
void printinfo(struct info *user);
然后称它为
printinfo(&user);
这使得编译器只传递一个指向结构的指针,节省时间和内存。
我还没有找到 scanf_s
我的在线手册中的功能,你从哪里得到的?好吧,经过一些挖掘,我发现了它们......从这些功能的 VC 手册中(不是标准的,只是 Microsoft 的扩展):
Unlike scanf and wscanf, scanf_s and wscanf_s require the buffer size to be specified for all input parameters of type c, C, s, S, or string control sets that are enclosed in []. The buffer size in characters is passed as an additional parameter immediately following the pointer to the buffer or variable...
所以你必须使用
scanf_s("%s", &user.name, sizeof user.name - 1);
对于您正在阅读的其他字符串也是如此。
那些_s
带后缀的函数只是 Microsoft 对其编译器的扩展。它们不可移植(无论如何也不是标准的)并且不会出现在大多数 C 实现中。最好不要使用它们,除非您打算只使用 Microsoft C 编译器(并且您不保证它们将来会消失)。除了使用非标准函数之外,还有其他检查缓冲区大小的方法,例如
scanf("%.39s", user.name); /* there's no need to use the & operator here */
(如果您需要将尺寸作为参数传递,您可以执行以下操作):
SCANF("%.*s", sizeof user.name - 1, user.name);
将完成工作,或者
fgets(user.name, sizeof user.name, stdin);
(此调用要求您从字符串中删除最后一个 \n
)这两个调用都是标准的,包含在 <stdio.h>
中.
关于c - scanf_s 中的访问冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53036713/
一边回答this问题我在 Ideone 上编译了代码并得到这个错误 implicit declaration of function ‘scanf_s’ [-Wimplicit-function-de
我在编程方面相当新手,并且在一段代码上遇到了问题。我正在尝试输入一个单词,但是当我运行该程序并输入该单词时,它停止工作。 这是代码: int main(void){ char a[]=
这个问题已经有答案了: I am having trouble with multiple chars and scanf_s() [duplicate] (2 个回答) 已关闭 5 年前。 我编写了
{ printf("Please give a random positive number for X: \n"); scanf_s("%i", &X); char ch =
我试过这段代码,但它不起作用。 char word1[40]; printf("Enter text: \n"); scanf_s("%s", word1); printf("word1 = %s",
对于下面的代码(C 语言) int small_a, small_b; printf("Please input two numbers\n"); scanf_s("%d %d
如果我无法访问互联网,但知道我想使用 scanf_s() 函数从键盘获取输入 (stdin),我怎么知道在哪里声明缓冲区? 目前,当我进入 Visual Studio 中的 scanf_s() 函数时
我正在尝试制作一个程序,看看我可以用 C 中的结构做什么。但是在 scanf_s("%s", &user.name) 的主函数中出现错误: Exception thrown at 0x5C26D3EC
我在使用 scanf_s() 时遇到了一些问题;函数或开关函数,我第一次运行我的代码时它无法识别正确的字符并循环回到开头,但之后它工作正常。这是一个简单的计算器。 可能有一些简单的解决方案,因为我刚开
为什么在输入要放入结构的数字后到达第二个 scanf_s 时,以下代码会抛出异常。 这绝不代表一个完整的链表实现。 输入值后不确定如何进入下一个scanf_s?有什么想法吗? 编辑:使用建议的解决方案
char array1[10]; scanf_s("%9s", array1, (unsigned)_countof(array1); (unsigned)_countof(array1) 是什么意思
此代码崩溃: scanf_s("%c %d",&ch,&x);//Run error 但是这段代码有效: scanf_s("%c",&ch); scanf_s("%d",&x);//Run succe
程序: #include "stdafx.h" #include "stdio.h" #include "string.h" //#include "iostream" const int IDLEN
这是我的代码。这是学校作业。我必须编写一个程序来使用巴比伦人开发的方法等来计算数字的平方根,这不是重要的部分。我想知道是否可以忽略 scanf 中的字母,这样当我输入字母时,它就不会在我的终端中变得狂
所以我想在同一个scanf_s中写入两个变量。也许我什至没有使用正确的名称来描述我想要的东西,因为我对此很陌生,但基本上我希望它是这样的: What is your last and first na
这个问题已经有答案了: C programming - Loop until user inputs number scanf (4 个回答) 已关闭 5 年前。 编辑1:抱歉,我正在学习编程类(cl
我尝试使用 scanf_s 从用户那里获取日期和月份的输入(带有 visual studio 的编译器总是要求您使用 scanf_s,这就是我使用它的原因)。它允许我输入日期,但是当我输入月份(作为字
我正在对两个不同的输入使用 scanf_s 并将它们放入 char 数组中。我附上了代码和它给出的输出 char firstName[30]; char lastName[30]; int main(
我正在尝试编写一个简单的代码来输入 int 和 char 的值。 Visual Studio 抛出异常 #include int main() { int i; char c;
在大学学习编程的头几个月后,我一直在文件末尾或代码中的某些重要位置包含 scanf_s("%d");,在命令控制台在程序加载后不消失。 我似乎找不到关于以下方面的简明答案或解释: 如果我不写 scan
我是一名优秀的程序员,十分优秀!