135k views
2 votes
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

1 Answer

2 votes

Answer:

b. False.

Step-by-step 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.

User Lakisha
by
3.5k points