gpt4 book ai didi

c - Xcode 中的符号常量

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

我正在通过《C 编程语言第二版》学习 C,它指的是符号常量,您可以在 main() 之前使用 #define 将标签分配给值(value)。

这是我尝试使用的程序:

#include <stdio.h>

#define LOWER 0
#define UPPER 300
#define STEP 20

main()
{
int fahr;

for (fahr = LOWER; fahr <= UPPER; fahr = fahr + STEP)
{
printf("%3d %6.1f\n", fahr, (5.0/9.0)*(fahr-32));
}
}

打印华氏摄氏度转换表。然而,当使用 c 工具在 xcode 中编译此代码时,会给出响应 unable to read Unknown load command ,引用以 for 开头的行。我已经尝试重新输入该程序,但仍然没有成功。

任何帮助将不胜感激。

最佳答案

第一行应该是

#include <stdio.h>

关于c - Xcode 中的符号常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1974060/

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