单项选择题

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

执行后的输出结果是( )。

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