✅ 배열 공부하다가 종종 나오는 질문

아니 define으로 사이즈를 결정하는건 되는데, 왜 상수는 안되죠?

#define SIZE 8
Int arr[SIZE]= {0, };
const int size= 8;
int arr[size]= {0, };