对下面程序段: #define A 3 #define B(a) ((A+1)*a) ... x=3*(A+B(7));正确的判断是()。
A.程序错误,不许嵌套宏定义
B.程序错误,宏定义不许有参数
C.x=93
D.x=21
正确答案是C