Chapter 9: Problem 14
Suppose that you have the following definitions: struct timeType struct tourType { { 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.
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.