0
2.0kviews
Comment on dynamic memory allocation. Write a program to read and store N integers in an array, where value of N is defined by user. Find minimum and maximum numbers from the array.
1 Answer
0
22views

Dynamic memory allocation:

  1. Dynamic Memory Allocation refers to managing system memory at runtime.

  2. Dynamic memory management in C programming language is performed via a group four functions namely malloc(),calloc().

  3. These four dynamic memory allocation function of the C programming language are defined in the C standard library header file<stdlib.h>. Dynamic …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.