Suppose that you have the following definitions: (8)
```
struct timeType struct tourType
f {
int hr; string cityName;
double min; int distance;
int sec; timeType travelTime;
};
};
```
a. Declare the variable destination of type tourType.
b. Write C++ statements to store the following data in destination: cityName-Chicago, distance - 550 miles, traveltime- 9 hours and 30 minutes.
c. Write the definition of a function to output the data stored in a variable of type tourType.
d. Write the definition of a value-returning function that inputs data into a variable of type tourType.
e. Write the definition of a void function with a reference parameter of type tourType to input data in a variable of type tourType.