求解释,这是为什么?(C语言笔试题)
#include <stdio.h>#define ADD(x) x+x
int main()
{
int a=3,b=4,c=10,d;
d=ADD(a+b)*c;
printf("d=%d\n",d);
return 0;
}
2013-01-08 23:07
2013-01-08 23:09

2013-01-08 23:15

2013-01-08 23:15
2013-01-08 23:18

2013-01-08 23:20

2013-01-08 23:21

2013-01-08 23:32
2013-01-08 23:36

2013-01-09 00:26