以下程序的输出结果是______。 #define f(x)x*x main() { int a=6,b=2,c; c=f(a)/f(b); printf("%d\n",c); }
A.9
B.6
C.36
D.18