填空题
以下程序的输出结果是 【18】 。 #define MCRA(m) 2*m #define MCRB(n,m) 2*MCRA(n)+m main( ) { int i=2,j=3; printf("%d\n",MCRB(j,MCRA(i))); }