gpt4 book ai didi

c - 整数除以宏定义的其他整数常量在 C 中返回不正确?

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

在下面的代码中,输出是30! ,应该是 0。我错过了什么吗?

#include <stdio.h>
#define L 30
#define N2 L * L

int main() {


unsigned int id = 30;

printf("k = %d\n", id/N2); //this prints 30 but 30/900 should be zero!
printf("k = %d\n", id/900); //this prints 0 OK!

return 0;
}

最佳答案

操作顺序:

30/30 * 301 * 3030/9000

您需要在宏中添加括号才能获得正确的行为:

#define N2 (L * L)

关于c - 整数除以宏定义的其他整数常量在 C 中返回不正确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51935996/

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