Define a struct computerType to store the following data about acomputer: Manufacturer (50 character string), model type (50character string), processor type (10 character string), ram (int)in GB, hard drive size (int) in GB, year when the computer wasbuilt (int), and the price (double).
Write a program that declares a variable of type computerType,prompts the user to the input data for the struct, and then outputsall the computer's data from the struct.
For Example:
Enter the name of the manufacturer: DellEnter the model of the computer: InspironEnter processor type: I7 387Enter the size of RAM (in GB): 32Enter the size of hard drive (in GB): 512Enter the year the computer was built: 1990Enter the price: 1345.67--------------------Manufacturer: DellModel: InspironProcessor: I7 387Ram: 32Hard Drive Size: 512Year Built: 1990Price: $1345.67