A-A+
程序中头文件typel.h的内容是: #define N 5 #define M1 N*3
问题详情
程序中头文件typel.h的内容是: #define N 5 #define M1 N*3 程序如下: #include "type1.h” #define M2 N*2 main() { int i; i=M1+M2; printf("%dn",i);} 程序编译运行后的输出结果是()
A.10
B.20
C.25
D.30请帮忙给出正确答案和分析,谢谢!
参考答案
正确答案:C