free1 [C언어] 내장함수 비교 - strdup, malloc, calloc, free 에 정의된 strdup 함수와, 에 정의되어 있는 동적 메모리(dynamic memory) 할당 및 해제 함수 몇 가지를 정리한다. 리퍼런스는 man 가이드다. strdup strdup 함수는 동적 메모리를 할당하여 문자열을 복사하므로 malloc 함수를 사용한다. PROTOTYPE #include void *strdup(const char *s1); NAME duplicate a string (save a copy of a string) DESCRIPTION - The strdup() function allocates sufficient memory for a copy of the string s1, does the copy, and returns a pointer to it. - The pointer.. 2020. 10. 7. 이전 1 다음