Exercise 22 - 03/27/2017 1. Write a C++ program to create a Structure called Meal. It has 4 data elements - entre, side, drink and price. The first 3 are strings, the last is a double. In the main function, create a variable of type Meal. Read in the values and then print them back out. Sample Run: Enter your meal details: Entre - Chicken Sandwich Side - Waffle Fries Drink - Lemonade Price - 7.45 You had a Chicken Sandwich with Waffle Fries and Lemonade. Your meal was $ 7.45