单项选择题

以下程序的运行结果是______。 #define MIN(x,y)(x)>(y)(x):(y) main() { int i=10,j=15,k; k=10*MIN(i,j); printf("%d\n",k); }

A.10
B.15
C.100
D.150