填空题

以下程序的输出结果是______。
#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)));

【参考答案】

P