gpt4 book ai didi

根据时间创建消息宏

转载 作者:行者123 更新时间:2023-11-30 14:52:07 26 4
gpt4 key购买 nike

我正在尝试为我的 C 程序创建一个宏,以便在 printf 中使用

#define TIME(t) \
(t->tm_hour >= 6 && t->tm_hour < 12) ? "Good morning":"" && \
(t->tm_hour >= 12 && t->tm_hour < 18) ? "Good afternoon":"" && \
(t->tm_hour >= 18 && t->tm_hour < 23) ? "Good night":""

printf函数与下面相同

printf("%s\n", TIME(t));

编译中向我返回警报 C4474

C4474: too many arguments passed for format string

有谁知道这个错误的原因吗?

最佳答案

您需要有 else-conditions 级联:

#define TIME(t) \
(((t)->tm_hour >= 6 && (t)->tm_hour < 12) ? "Good morning" : \
((t)->tm_hour >= 12 && (t)->tm_hour < 18) ? "Good afternoon" : \
((t)->tm_hour >= 18 && (t)->tm_hour < 23) ? "Good night" : "")

关于根据时间创建消息宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47744391/

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