Write a definition statement that defines a car


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

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: Write a definition statement that defines a car
Reference No:- TGS093761

Expected delivery within 24 Hours