以下程序的输出结果是( )
#include<stdio.h>
#define f(x) x*x
void main()
{
int a=6,b=2,c;
c=f(a+b)/f(a-b);
printf("%d\n",c);
}
-2.5
-2
64
4