The Heap (malloc && free ) functions in C programming language !!!

 #include <stdio.h>

#include <stdlib.h>


int main()

{

     int * points;

     points = (int *) malloc (5 * sizeof(int));


     free(points);

    return 0;

}


Comments