The structure Car is declared as follows:
struct Car
{
char carMake[20];
char carModel[20];
int yearModel;
double cost;
};
Write a definition statement that defines a Car structure variable initialized with the following data:
Make: Ford
Model: Mustang
Year Model: 1997
Cost: $20,000
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.