Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

use c++ language Write a complete C or C++ program to implement a car service directory. Structure contains name and surname of the owner, car

use c++ language
image text in transcribed
Write a complete C or C++ program to implement a car service directory. Structure contains name and surname of the owner, car id, model, registration date and next service date as day, month, year and phone number of the car owner. Your program should have the following menu. Write necessary functions for the menu: Menu: 1- Add a new car to directory 2- Delete a car from the directory 3- List available cars in the directory 4- Search a car: A - Search according to car id B - Search according to owner_name 5- Update car information 6 - Sort according to car id 7- Sort according to owner_name 8-Quit struct date \{ int day, month, year; \} struct car \{ int ID; char owner_name[20], owner_surname[20], model[20]; struct date reg_date, ns_date; \}car_directory[100]; Important notes: - Write a user defined function for each menu option

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems For Advanced Applications 15th International Conference Dasfaa 2010 International Workshops Gdm Benchmarx Mcis Snsmw Diew Udm Tsukuba Japan April 2010 Revised Selected Papers Lncs 6193

Authors: Masatoshi Yoshikawa ,Xiaofeng Meng ,Takayuki Yumoto ,Qiang Ma ,Lifeng Sun ,Chiemi Watanabe

2010th Edition

3642145884, 978-3642145889

More Books

Students also viewed these Databases questions

Question

c. What were you expected to do when you grew up?

Answered: 1 week ago

Question

4. Describe how cultural values influence communication.

Answered: 1 week ago

Question

3. Identify and describe nine cultural value orientations.

Answered: 1 week ago