#include #define f(x)x*x main() {int i; i=f(4+4)/f(2+2); printf("%d\n",i); }
宏替代以后就是:i = 4+44+4/2+22+2 = 4+16+2+4+2 = 28