Question: Write a C program to create 2 files: 1) to store details of vehicles in file vehicle.txt, and 2) to store information about the owners



Write a C program to create 2 files: 1) to store details of vehicles in file vehicle.txt, and 2) to store information about the owners of the vehicles in file owner.txt, Use structure vehicle_details to keep details of a vehicle as provided by the user and save in file vehicle.txt, use structure owner_details to keep details of the owner of the vehicle as provided by the user and save in file owner.txt. Declare the two structures as follows struct vehicle_details char make [30]; char model[30]; float capacity; struct owner_details ( char name [30]; char address[40]; Follow the steps belowto design your program: Declare an array of vehicle_details and an array of owner_details, each of size 100 Read the details of vehicles and owners from the user. Save the vehicle details to filevehicles.txt, one record per line, and save owner details in file owner.txt, again one record per line. Repeat steps 2 and 3 until user enters a blank line, until the user enters 0 to exit. Then close the two files. Then, open the files, read vehicles details and owner details alternatively, and print the details to the screen. 1. 2. 3. 4. 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
