int* X = new int [100];
int* Y = new int[3]
X = Y
delete [] X;
이렇게 하면 100개짜리 배열의 메모리는 메모리 누수됨?

- dc official App