gpt4 book ai didi

c - 将 int 传递给 scanf() 时 C 中的段错误?

转载 作者:行者123 更新时间:2023-11-30 21:22:45 25 4
gpt4 key购买 nike

请帮我调试我的程序

#include<stdio.h>

int main ()
{

int n = 1,t;

printf("How many Peanut Butter sandwiches do you want?");

scanf("%d", t);

while( n <= t )
{

printf("Making Sandwhitch no. %d\n", n);
n++;

}

return 0;
}

每次提交时,都会显示段错误(核心已转储)。该怎么办?

最佳答案

scanf() 将指针作为参数,因此要将其与此处的 t 一起使用,您必须这样使用 scanf(): scanf("%d", &t);

有关指针的更多信息,请参阅此:Pointers in c

关于c - 将 int 传递给 scanf() 时 C 中的段错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51443596/

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