Question: 1. Declare a pointer to an Order object namely p_order_list and properly initialize it at declaration 2. Dynamically allocate an array of 1024 Order objects

1. Declare a pointer to an Order object namely p_order_list and properly initialize it at declaration

2. Dynamically allocate an array of 1024 Order objects and assign it to p_order_list. NOTE: this is a dynamic array of Order objects, not an array of pointers to Order objects 3. Write a loop to go thru the entire the array and count the number of Order objects that have purchase price over 1,000 (one thousand). You must use pointer syntax (not array syntax [ ]) by declaring an additional p_order pointer. Also pointer syntax such as (p_order + i) is not allowed meaning you must increment the pointer to move from one array element to another.

4. Finally de-allocate the array memory and reset p_order_list to NULL.

Assuming the following class definition:

 class Order { private: float purchase_price_; 

public: Order ( ) ; 

float get_purchase_price ( ) const; } ;

Order::Order ( ) : purchase_price_ (0.0) { } int Order::get_purchase_price ( ) const { 

return purchase_price_; 

}

Step by Step Solution

3.48 Rating (151 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

1 Declare a pointer to an Order object namely porderlist and properly initialize i... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Algorithms Questions!