第3个回答 2016-12-30
逗号表达式的取值,是最右边一个表达式的值
程序先计算逗号表达式最左边的式子a+b,计算结果没有保存,对a,b,c的取值没有影响[a=1,b=2]
然后计算a++[a=2,b=2]
然后计算b+1[b+1=3,a=2,b=2],计算结果会当作整个逗号表达式的最终取值赋值给c[a=2,b=2,c=3]
第5个回答 2019-09-12
##称为连接符,用来将宏参数或其他的串连接起来。
例如有如下的宏定义:
#define CON1(a, b) a##e##b
#define CON2(a, b) a##b##00
那么:
printf("%f\n", CON1(8.5, 2));
printf("%d\n", CON2(12, 34));
将被展开为:
printf("%f\n", 8.5e2);
printf("%d\n", 123400);
将上面的例子补充完整:
#include <stdio.h>
#define CON1(a, b) a##e##b#
define CON2(a, b) a##b##00
int main()
{
printf("%f\n", CON1(8.5, 2));
printf("%d\n", CON2(12, 34));
return 0;
}
运行结果:
850.000000
123400