gpt4 book ai didi

c - 不明白输出是如何生成的

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

我期望输出(或愚蠢的值)为36。但我得到的是14。当我添加括号时,此问题已修复:#define THING (4+2)

但我仍然想知道没有括号时发生了什么以及为什么我得到 14 的输出。以下是我的代码:

#include <stdio.h>
#include <stdlib.h>

#define THING 4+2

int main(void)
{

int silly = THING * THING;
printf("%d", silly);

return EXIT_SUCCESS;
}

最佳答案

THING*THING = 4+2*4+2 = 4+(2*4)+2 // because of higher precedence of * than +
= 4+8+2 = 14.

请记住,宏已完全替换(替换)到代码中。

关于c - 不明白输出是如何生成的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39261642/

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