127k views
1 vote
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;};

User McNab
by
8.0k points

1 Answer

4 votes

Answer:

Following show the data structure.

Step-by-step 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;

User Klever
by
9.0k points

No related questions found