2015년 6월 1일 월요일

Free the array at C

/* 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); } }

댓글 없음:

댓글 쓰기