Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

bartleby

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;
expand button
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
expand button
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
Check Mark
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.

Knowledge Booster
Background pattern image
Computer Science
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.
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education