티스토리 뷰

Devolopment/C, C++

Free the array at C

OpenUiz 2015. 5. 29. 14:12
반응형

/* free the array */ void strfreev (char **str_array, int size) { if (str_array) { int i; for(i = 0; i<size; i++) free(str_array[i]); free (str_array); } }


반응형
반응형
최근에 달린 댓글