C প্রোগ্রামিং ও Memory Allocation

Submitted by administrator on Mon, 01/02/2012 - 16:14

So far you've learned how to declare and reserve a piece of memory space before it is used in your program. For instance, you have to specify the size of an array in your program (or the compiler has to figure out the size if you declare an unsized array) before you assign any data to it at runtime. In this lesson you'll learn to allocate memory space dynamically when your program is running. The four dynamic memory allocation functions covered in this lesson are

    The malloc() function
    The calloc() function
    The realloc() function
    The free() function




Summary

  •     In C, there are four functions that can be used to allocate, reallocate, or release a block of memory space dynamically at runtime.
  •     The malloc() function allocates a block of memory whose size is specified by the argument passed to the function.
  •     The free() function is used to free up a block of memory space previously allocated by the malloc(), calloc(), or realloc() function
  •     The calloc() function can do the same job as the malloc() function. In addition, the calloc() function can initialize the allocated memory space to 0.
  •     The realloc() function is used to reallocate a block of memory that has been allocated by the malloc() or calloc() function.
  •     If a null pointer is passed to the realloc() function as its first argument, the function acts like the malloc() function.
  •     If the second argument of the realloc() function is set to 0, the realloc() function is equivalent to the free() function that releases a block of allocated memory.
  •     You have to include the header file stdlib.h before you can call the malloc(), calloc(), realloc(), or free() function.
  •     You should always check the values returned from the malloc(), calloc(), or realloc() function, before you use the allocated memory made by these functions.

 

Related Items

Using the Precision Specifier

Using the Precision Specifier

Aligning Output

Aligning Output
As you might have noticed in the previous section, all output is right-justified. In other words, by default, all output is placed on the right edge of the field, as long as the field width is longer than the width of the output.

 

Adding the Minimum Field Width

Adding the Minimum Field Width

Converting to Hex Numbers

Converting to Hex Numbers

Revisiting the printf() Function

Revisiting the printf() Function

The printf() function is the first C library function you used in this book to print out messages on the screen. printf() is a very important function in C, so it's worth it to spend more time on it.