Look at the following array definition.
double sales[8][10];
A) How many rows does the array have?
B) How many columns does the array have?
C) How many elements does the array have?
D) Write a statement that stores 3.52 in the last column of the last row in the array.
Use the following Car structure declaration to answer questions 28–30.
struct Car
{
string make,
model;
int year;
double cost;
// Constructors
Car()
{ make = model = ""; year = cost = 0; }
Car(string mk, string md, int yr, double c)
{ make = mk; model = md; year = yr; cost = c; }
};
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.