2중 포인터 동적 할당을 할 때 방법입니다 WCHAR의 2중 포인터를 예를 들어 아래와 같이 코딩을 하시면 됩니다 int iCount = 5; WCHAR **ppValue = NULL; //할당 및 값 입력 if(iCount > 0) { ppValue = new WCHAR*[iCount]; for(int iCnt = 0; iCnt 0) { for(int iCnt = 0; iCnt < iCount; iCnt++) { delete []ppValue[iCnt]; } delete []ppValu..