1. #include <stdio.h>
  2. #define SQU(x) x*x
  3. int main(void) {
  4. // your code goes here
  5. int a=9;
  6. printf("%d", SQU(a+1));
  7. return 0;
  8. }
  9.  

이거 왜 100이 아니라 19가 나오나요?


(a+1)(a+1)

10X10아니에요?