Write a program to keep records of cars in a car dealer shop. The information of each car contains, ID, make, model, year,
color, engine, and price. The program must load/save the data about cars from/to a text file on the hard disk (e.g,
"c:\\Users\YourName\\cars.txt". Once started it should load the file into array of structs The program should prompt the
user to select the operation from a menu as shown below.
1) Add a car record
2) Delete a car record
3) Update a car record
4) view all car records
5) view cars with price less than value
6) view cars by car make
7) view all cars sorted by price
8) view all cars sorted by year
9) save
10) quit
Comments
Leave a comment