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

The if-else Statement

The if-else Statement

The if statement

The if statement

If life were a straight line, it would be very boring. The same thing is true for programming. It would be too dull if the statements in your program could only be executed in the order in which they appear.

Mathematical Functions in C

Mathematical Functions in C

Basically, the math functions provided by the C language can be classified into three groups:

    Trigonometric and hyperbolic functions, such as acos(), cos(), and cosh().

Changing Data Sizes

Changing Data Sizes

Enabling or Disabling the Sign Bit

Enabling or Disabling the Sign Bit

As you know, it's very easy to express a negative number in decimal. All you need to do is put a minus sign in front of the absolute value of the number. But how does the computer represent a negative number in the binary format?