How the data are managed in the memory in C++ programing ?
Vishalini.R Answered question June 14, 2023
							C++ provides dynamic memory management, which implies that you, the programmer, are in charge of allocating and dealing with memory. Automatic memory management, on the other hand, means that the programming language handles memory allocation and deallocation for you.
Vishalini.R Answered question June 14, 2023
				