Answer:
Explanation:
To create a struct data type, let use the keyword "struct" and followed with the variable name, Appointment (Line 1).
Next create the string member, name (Line 2).
Next we need to include two other struct data types (Date and Time) as part of the member of the existing struct. To do so, we can try to define the struct for Date (Line 8 - 12) and Time (Line 14 - 18) separately.
At last, we include the struct Date & Time into the Appointment struct (Line 3-4)