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

Manipulating Bits

Manipulating Bits

In previous hours, you learned that computer data and files are made of bits (or bytes). There is even an operator in C_the sizeof operator_that can be used to measure the number of bytes for data types.

Everything Is Logical

Everything Is Logical

Now, it's time for you to learn about a new set of operators: logical operators.

There are three logical operators in the C language:
&&     The logical AND operator
||     The logical OR operator

Question and Answer

    Q Why do we need the sizeof operator?

Exercises : Answer the following Question

To help solidify your understanding of this hour's lesson, you are encouraged to answer the quiz questions and finish the exercises provided in the Workshop before you move to the next lesson.

Playing with an Infinite Loop

Playing with an Infinite Loop

If you have a for statement like this,

for ( ; ; ){
  /* statement block */
}