Dynamic Memory Allocation in C
While doing programming we may come across a situation when the number of data items keeps on changing during the program execution. For example, we have made a program that stores the details for employees in a company. The list of employees keeps changing as new employees join or old employees leave the company. When …
