#define f(x) (x*x)main(){ int i , j; i=f(8)/f(4); j=f(4+4)/f(2+2); printf("%d %d",i, j);}答案是4 3,但是我不明白那个j值得运算过程,.望指教~~