A Car structure is declared as follows:
struct Car
{
string make,
model;
int year;
double cost;
Car(string mk, string md, int y, double c)
{ make = mk; model = md; year = y; cost = c; }
};
Write a definition statement that defines a Car structure variable initialized with the
following information:
Make: Ford Model: Mustang
Year: 2010 Cost: $22,495
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.