http://blog.naver.com/blueherald/120102197963 #define rows 5 #define cols 10 int main(void) { char **array; unsigned int i, j; /* 행 동적 메모리 할당 */ array = (char**) malloc(sizeof(char*) * rows); if (array == NULL) { printf("Not enough memory\n"); return; } /* 열 동적 메모리 할당 */ for (i=0; i