Posted On: Feb 22, 2018
Array memory allocation is always static and continuous while the memory allocation of a list is dynamic and quite random.
In case of arrays, users need not keep a track of next memory allocation, whereas in case of lists, a user has to keep a track of next location where memory is allocated due to its dynamism.
Never Miss an Articles from us.
Object-oriented programming (OOP) is a type of computer programming, also more commonly known as software design, in wh..
The statement #include is used in C++ to include the source file or import the header files containing definitions of f..
The ‘this’ pointer is passed as a hidden argument to all the non-static member method calls and is available as a l..