Use the following global structure declaration as an example only. You will need to create your own data structure based on a database of your own design. For example, movies in a video collection, houses for sale, business appointments, etc. Your data structure should include a minimum of four fields. At least one field should be string, and one field should be numeric (int, or double). Example Onlystruct VEHICLE{string make;string model;int year;int miles;double price;};

Respuesta :

Answer:

Following show the data structure.

Explanation:

As Example has been given for any global declaration create a program

product {                                    

 int weight;

string manu_date;

 double price;

} ;

product apple;

product banana, melon;