2. 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: $28,000