以下程序的输出结果是( )。 #include #define N 2 #define M N+1 #define NUM(M+1)*M/2 main(){printf(’’%d\n’’,NUM);}

admin2020-11-23  18

问题 以下程序的输出结果是(  )。
#include
#define N 2
#define M N+1
#define NUM(M+1)*M/2
main(){printf(’’%d\n’’,NUM);}

选项 A、9
B、8
C、7
D、6

答案B

解析 本题考查宏替换。宏展开以后NUM为(2+1+1)*2+1/2,计算以后值为8。在进行宏展开的时候,要展开以后再进行计算。
转载请注明原文地址:https://kaotiyun.com/show/iv3p777K
0

随机试题
最新回复(0)