컴퓨터/프로그래밍
메모리 동적 할당 함수 malloc, calloc, realoc, free
Begi
2020. 5. 1. 19:43
반응형
malloc은 memory allocation의 약자로 메모리를 할당할 때 사용하는 함수이다.
calloc은 contiguous allocation의 약자로 malloc과 비슷하지만 calloc은 처음에 0으로 초기화한다.
realloc은 re-allocation의 약자로 malloc으로 할당된 메모리의 크기를 다시 조절하는 함수이다.
free는 할당된 메모리를 해제하는 함수이다.
반응형