#include "stdio.h"
# define sqr(x) x*x main() { int a,k=3; a=++sqr(k+1); printf("%d\n",a); }
这里出来的为什么是9不是8?