Problem
1. What does the expression *"pizza" mean? What about "taco"[2]?
2. C++ enables you to pass a structure by value, and it lets you pass the address of a structure. If glitz is a structure variable, how would you pass it by value? How would you pass its address? What are the trade-offs of the two approaches?