单项选择题

有如下程序段:
#include<stdio.h>
#define Max(a,b) a>ba:b
main()

int a=5,b=6,c=4,d;
d=c+Max(a,b);
printf("%d",d);

其输出结果为______。

A.10
B.5
C.6
D.编译错误