gpt4 book ai didi

c - C 语言中 & 符号的使用

转载 作者:行者123 更新时间:2023-11-30 20:35:41 26 4
gpt4 key购买 nike

我的代码:-

#include<stdio.h>
#include<conio.h>
void main(){
int a,b,c;
printf("Enter the 1st number:");
scanf("%d",a);
printf("Enter the 2nd number:");
scanf("%d",b);
c=a*b;
printf("The value of %d * %d is %d",a,b,c);
getch();
}

现在,当我在 Turbo C++ 中执行该程序时,输出如下:-

Enter the 1st number:10
Enter the 2nd number:10
The value of 1308 * 1320 is 22625

为什么会发生这种情况?

最佳答案

从用户获取值时缺少 & 和号。您必须获取变量地址中的值,而不是变量本身,因此在 scanf 函数中从用户获取值时使用 &

#include<stdio.h>
#include<conio.h>
void main(){
int a,b,c;
printf("Enter the 1st number:");
scanf("%d",&a);
printf("Enter the 2nd number:");
scanf("%d",&b);
c=a*b;
printf("The value of %d * %d is %d",a,b,c);
getch();
}

关于c - C 语言中 & 符号的使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38409107/

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