TT. PIUS) (A.) Define a structure called date that represents a particular day on the calendar and has three member variables, one for the day, one for the month, and one for the year. Use the typedef keyword to create a new name for this type called Date. (B.) Write a main program that creates a structure of type Date on the stack and gives it the date December 31, 2016 either through an initializer or individual assignments. ia CourseHero (C.) Write a function called output_date that, given a Date structure, will print out the date in the form month/day/year to the screen and returns nothing.