填空题

有以下程序:
# define f(x)x*x
main()
int i;
i=f(4+4)/f(2+2);
printf("% d\n", i);

执行后的输出结果是 【12】

【参考答案】

28