填空题
如果用定义宏的方法求两个数各自加1后相乘的结果,请填空。
#define SUM(n,m) ______
main()
int i=2,j=3;
printf("%d/n",SUM(i,j));
1、
【正确答案】
1、(n+1)*(m+1)
【答案解析】
提交答案
关闭