gpt4 book ai didi

c - 在 C 中传递字符串会导致空字符串吗?

转载 作者:行者123 更新时间:2023-11-30 17:36:41 24 4
gpt4 key购买 nike

我从 main() 内的用户那里获取了一些字符串,并且我想将这些字符串作为参数传递给另一个函数。当我运行调试时,我可以看到只有最后一个参数保存输入的字符串,而前两个参数为空。当我将字符串定义为全局时,一切正常,为什么?

我还尝试在从用户那里获取字符串后立即打印字符串,并且它们存储正常。

这是部分代码:

  char temp_destination[20];
char temp_old_date[6];
char temp_new_date[6];

printf("Please enter destination, flight date and new date to update\n");
printf("Destenation: ");
scanf("%s",temp_destination);
printf("Current date: ");
scanf("%s",temp_old_date);
printf("New Date: ");
scanf("%s",temp_new_date);
update_flight_date(database,temp_destination,temp_old_date,temp_new_date);

最佳答案

    char temp_destination[20];
char temp_old_date[6];
char temp_new_date[6];

一旦用户输入超过这些长度,内存就会被互相覆盖。在这种情况下,由于它们位于堆栈(本地)上,因此它们会覆盖它们自身(未定义的行为)。在全局变量中,它也发生了,但这只是你的程序正在运行。

因此,您应该真正确保用户输入不应超过您定义的内容。

关于c - 在 C 中传递字符串会导致空字符串吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22591456/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com