What are the static arrays and dynamic arrays
Static arrays : The process of allocating memory at compile time is known as static memory allocation and the arrays that receives static memory allocation are called static arrays. This approach works fine as long as user know that what the data requirements are. Dynamic arrays : The process of allocating memory at run time is known … Read more