Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please follow as the instructions say Your job is to write a C program that implements a simple car rental information system. Your program keeps

Please follow as the instructions sayimage text in transcribed

image text in transcribedimage text in transcribedimage text in transcribed

image text in transcribed

image text in transcribedimage text in transcribed

Your job is to write a C program that implements a simple car rental information system. Your program keeps track of the cars of a rental company and rental information. The program provides a simple user interface to add cars to the company's inventory, to make a car reservation, find a reservation, print rented and non-rented vehicles, and compute average number of days rented. Your program must use the data types and variables described below. A type definition of a new structure named Car to store car information. This structure must have the following fields int carId; // a unique ID of a car char make [20]; // make of the car char mode1[20]model of the car int numDoors; // 2 or 4 door cars double rate; II the rental rate of the car A type definition of a new structure named Rental to store rental information of a renter: char renterName[201; I/ name of renter int daysRenting; // days renting the car int carId; // ID of the car rented Two arrays in main0 function that store car information and rental information: Car allCars[20]; I/ a list of cars Rental allRentals [60]; /7 a list of rentals

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

Step: 3

blur-text-image

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 Processing

Authors: David J. Auer David M. Kroenke

13th Edition

B01366W6DS, 978-0133058352

More Books

Students also viewed these Databases questions

Question

5. Our efficiency focus eliminates free time for fresh thinking.

Answered: 1 week ago