> 백엔드 개발 > C++ > 본문

예를 들어 C 언어의 동적 메모리 할당 설명

王林
풀어 주다: 2023-09-09 08:53:06
앞으로
659명이 탐색했습니다.

예를 들어 C 언어의 동적 메모리 할당 설명

Problem

C 프로그래밍을 사용하여 동적으로 할당된 메모리를 사용하여 사용자가 입력한 n개의 숫자의 합을 구합니다.

Solution

동적 메모리 할당을 통해 C 프로그래머는 런타임에 메모리를 할당할 수 있습니다.

런타임에 동적으로 메모리를 할당하는 데 사용하는 다양한 함수는 다음과 같습니다.

  • malloc() - 런타임에 메모리 블록을 할당합니다.
  • calloc() - 런타임에 연속적인 메모리 블록을 할당합니다.
  • realloc() - 할당된 메모리를 줄이거나 늘리는 데 사용됩니다.
  • free() - 이전에 할당된 메모리 공간을 해제합니다.

다음 C 프로그램은 요소를 표시하고 n개 숫자의 합을 계산하는 데 사용됩니다.

동적 메모리 할당 기능을 사용하여 메모리 낭비를 줄이려고 노력합니다.

데모

#include<stdio.h>
#include<stdlib.h>
void main(){
   //Declaring variables and pointers,sum//
   int numofe,i,sum=0;
   int *p;
   //Reading number of elements from user//
   printf("Enter the number of elements : ");
   scanf("%d",&numofe);
   //Calling malloc() function//
   p=(int *)malloc(numofe*sizeof(int));
   /*Printing O/p -
   We have to use if statement because we have to check if memory
   has been successfully allocated/reserved or not*/
   if (p==NULL){
      printf("Memory not available");
      exit(0);
   }
   //Printing elements//
   printf("Enter the elements : </p><p>");
   for(i=0;i<numofe;i++){
      scanf("%d",p+i);
      sum=sum+*(p+i);
   }
   printf("</p><p>The sum of elements is %d",sum);
   free(p);//Erase first 2 memory locations//
   printf("</p><p>Displaying the cleared out memory location : </p><p>");
   for(i=0;i<numofe;i++){
      printf("%d</p><p>",p[i]);//Garbage values will be displayed//
   }
}
로그인 후 복사

출력

Enter the number of elements : 5
Enter the elements :
23
34
12
34
56
The sum of elements is 159
Displaying the cleared out memory location :
12522624
0
12517712
0
56
로그인 후 복사

위 내용은 예를 들어 C 언어의 동적 메모리 할당 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!