# include <stdio.h> #define f(a, b, x) a*x+bvoid main(){printf("%d, %d\n", f(3,2,1), f(6, 5, f(3, 2, 1)));}为什么后面输出的是25而不是35