Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

อธิบายฟังก์ชัน malloc ในการเขียนโปรแกรม C


ปัญหา

เขียนโปรแกรม C เพื่อแสดงและเพิ่มองค์ประกอบโดยใช้ฟังก์ชันการจัดสรรหน่วยความจำแบบไดนามิก

วิธีแก้ปัญหา

ใน C ฟังก์ชันไลบรารี malloc จัดสรรบล็อกของหน่วยความจำเป็นไบต์ที่รันไทม์ ส่งคืนตัวชี้เป็นโมฆะ ซึ่งชี้ไปยังที่อยู่ฐานของหน่วยความจำที่จัดสรร และทำให้หน่วยความจำไม่ได้กำหนดค่าเริ่มต้น

ไวยากรณ์

void *malloc (size in bytes)

ตัวอย่างเช่น

  • int *ptr;

    ptr =(int * ) malloc (1000);

  • int *ptr;

    ptr =(int * ) malloc (n * sizeof (int));

หมายเหตุ - คืนค่า NULL หากหน่วยความจำไม่ว่าง

ตัวอย่าง

#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 : \n");
   for(i=0;i<numofe;i++){
      scanf("%d",p+i);
      sum=sum+*(p+i);
   }
   printf("\nThe sum of elements is %d",sum);
   free(p);//Erase first 2 memory locations//
   printf("\nDisplaying the cleared out memory location : \n");
   for(i=0;i<numofe;i++){
      printf("%d\n",p[i]);//Garbage values will be displayed//
   }
}

ผลลัพธ์

Enter the number of elements : 5
Enter the elements :
23
45
65
12
23

The sum of elements is 168
Displaying the cleared out memory location :
10753152
0
10748240
0
23