我想知道如何将一元函数(或另一个宏)应用于宏的可变参数,例如
int f(int a); #define apply(args...) <the magic> apply(a, b, c)
展开
f(a) f(b) f(c)
请注意,参数的数量未知。
c macros
c ×1
macros ×1