可能重复:
Why i am not getting the expected output in the following c programme?
我对宏的评估顺序有疑问。对于以下代码,我无法理解输出:
#include <stdio.h>
#define f(a,b) a##b
#define g(a) #a
#define h(a) g(a)
int main()
{
printf("%s\n",h(f(1,2)));
printf("%s\n",g(f(1,2)));
return 0;
}
输出
12
f(1,2)
为什么f在第二个printf中的g先被扩展?