
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
need help with clearing space in c++
![How do you release the memory at the end?
#include <iostream>
using namespace std;
int main(){
int a =
5;
int *p = &a;
int *c = new int[5];
//release memory
return 0;
}
delete p; delete [] c;
delete c;
delete
p; delete c;
delete | c;](https://content.bartleby.com/qna-images/question/5f09483b-8306-4114-863e-fc54268e6494/d1347b7e-610c-438e-bb70-704367c17179/ikdo6y_thumbnail.png)
Transcribed Image Text:How do you release the memory at the end?
#include <iostream>
using namespace std;
int main(){
int a =
5;
int *p = &a;
int *c = new int[5];
//release memory
return 0;
}
delete p; delete [] c;
delete c;
delete
p; delete c;
delete | c;
![Which line can free the space correctly?
int* foo(int x){
int *y
= new int[x*x];
return y;
}
int main(){
int
Z =
foo(10);
//free space
return 0;
}
delete | z
delete *z
delete z
delete | *z](https://content.bartleby.com/qna-images/question/5f09483b-8306-4114-863e-fc54268e6494/d1347b7e-610c-438e-bb70-704367c17179/ozrr4rt_thumbnail.png)
Transcribed Image Text:Which line can free the space correctly?
int* foo(int x){
int *y
= new int[x*x];
return y;
}
int main(){
int
Z =
foo(10);
//free space
return 0;
}
delete | z
delete *z
delete z
delete | *z
Expert Solution

arrow_forward
EXPLANATION
1) The correct answer of the question is option("d") "delete[] c;
EXPLANATION
Delete is an operator that is used to remove artifacts that are generated by new expression for array and non-array objects.
Delete can be used with the operator Delete or Delete [].
The new operator is used to assign dynamic memory, placing heap memory variables.
The means that Delete operator transfers heap memory.
The object pointer is not lost, value or memory block is destroyed by the pointer.
The delete operator does not return the value of the delete form.
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- What is concept of function pointer? Give suitable example in C++.arrow_forwardShould we use fully qualified or unqualified references for variables and objects in our code? The influence of C's encapsulation problems on C++ and related topics.arrow_forwardIn C++A) Discuss the pros and cons of arrays and lists. Which one is memory efficient. B) Define auto_ptr and discuss why it is not compatible with STL containers?arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education