#include <stdio.h> #define SQUARE(a)((a)*(a))void main(){ int a=5; int b; b=SQUARE(a++);printf("%d %d",a,b);}