小编Aak*_*ati的帖子

这个 C 代码的输出是 49 但有人可以解释我怎么做吗?

#include <stdio.h>

#define CUBE(x) (x * x * x)

int main() {
    printf("%d", CUBE(4+5));
    return 0;
}
Run Code Online (Sandbox Code Playgroud)

c c-preprocessor

1
推荐指数
2
解决办法
158
查看次数

标签 统计

c ×1

c-preprocessor ×1