单选题 有以下程序
#include<stdio.h>
#define M 5
#define f(x, y) x*y+M
main()
{ int k;
k=f(2, 3)*f(2, 3);
printf("%d/n", k);
}
程序的运行结果是
【正确答案】 B
【答案解析】