Problem:
Question- Define a class called Pizza that has the following data members:
• Base Type to track the type of pizza (either thick based, hand tossed or pan)
• Size (small, medium, or large)
• Toppings, the number of pepperoni or cheese toppings
Use constants to represent the base type and size.
Please explain the program to define the class Pizza using its member function.