Answer:
double *prices=new double [256];
Explanation:
To allocate memory on heap we use new keyword.In the above statement an array name prices is declared and the memory allocated to it is on the heap memory.
First look at double * prices.It is a pointer this pointer is created on the stack memory which holds starting address of the array present on the heap memory of size 256..
I think the answer is shut down.
The process or activity of writing computer programs.
Answer:
<em>What are your thoughts about this?</em>
Explanation:
A question that can be answered with yes or no is a closed question.
Answer:(A) Protected members may be accessed by methods in the same package or in a subclass, even when the subclass is in a different package.
Explanation:
Methods,constructors and variables, that are protected in superclass they can be only accessed by any class within the package of the protected members class and methods in the same package or they can be of a subclass or the subclasses that may be present in other package .