#include <stdio.h> #define SQU(x) x*x void main(){ int a = 9; printf("%d", SQU(a+1)); }


1이 int형이 아닌거야? 어떻게 19가 나와..??