Westonci.ca is your go-to source for answers, with a community ready to provide accurate and timely information. Ask your questions and receive precise answers from experienced professionals across different disciplines. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly 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.