Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ Assume this class: class Space { private: int priv; public: int pub; }; //And assume this code in main() Space *sp = new Space,
C++
Assume this class:
class Space
{
private:
int priv;
public:
int pub;
};
//And assume this code in main()
Space *sp = new Space, *bar=NULL;
sp = new Space;
bar = sp;
(*bar).pub=92;
sp->pub=-82;
Which of the following best describes the code?
A. | This code will result in a memory leak. | |
B. | The class is invalid since there are no public class methods. | |
C. | The line bar = sp; is not allowed and will be a syntax error. | |
D. | The code (*bar).pub=92; is a runtime error since bar is NULL; | |
E. | The code will result in a runtime error since the pointer is never deleted. |
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started