Get expert advice and community support on IDNLearn.com. Discover the information you need from our experienced professionals who provide accurate and reliable answers to all your questions.

In C++, objects instantiated on the stack must be returned to program memory through the explicit use of the delete keyword.
a) True
b) False


Sagot :

Answer:

b. False.

Explanation:

Delete function not used to remove data stored on the stack. It is only used to free memory on the heap. The C++ is programming language used to develop operating systems.