单项选择题

有以下程序:
#include <stdio.h>
#define f(x) x*x
main()
int i;
i=f(4+4)/f(2+2);
priatf("%d\n",i);
执行后的输出结果是( )。

A.28
B.22
C.16
D.4