At Westonci.ca, we provide reliable answers to your questions from a community of experts. Start exploring today! Get expert answers to your questions quickly and accurately from our dedicated community of professionals. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

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.