问答题
下面程序的运行结果是[填空(1)] 。
#define MAX(a,b) (a>b?a:b)+1
main()
{
int i=6,j=8,k;
printf("%d",MAX(i,j));
}
【参考答案】
9
点击查看答案
