Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C 언어의 malloc 함수는 무엇입니까?

<시간/>

malloc() 함수는 메모리 블록을 동적으로 할당하는 메모리 할당을 나타냅니다.

지정된 크기의 메모리 공간을 예약하고 메모리 위치를 가리키는 널 포인터를 반환합니다.

malloc() 함수는 쓰레기 값을 전달합니다. 반환된 포인터는 void 유형입니다.

malloc() 함수의 구문은 다음과 같습니다 -

ptr = (castType*) malloc(size);

예시

다음은 malloc() 함수의 사용 예입니다.

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main(){
   char *MemoryAlloc;
   /* memory allocated dynamically */
   MemoryAlloc = malloc( 15 * sizeof(char) );
   if(MemoryAlloc== NULL ){
      printf("Couldn't able to allocate requested memory\n");
   }else{
      strcpy( MemoryAlloc,"TutorialsPoint");
   }
   printf("Dynamically allocated memory content : %s\n", MemoryAlloc);
   free(MemoryAlloc);
}

출력

위의 프로그램이 실행되면 다음과 같은 결과가 생성됩니다 -

Dynamically allocated memory content: TutorialsPoint