// Carnival // carnival.c // // This program was written by (z5555555) // on // // This program should create a carnival struct containing the booth // information. The snack offered should be scanned in by the user, while the // remaining information is provided as constants and all booth information // should then be printed. #include #define TICKET_PRICE 5.00 #define BOOTH_NUMBER 124 struct carnival { double ticket_price; char snack_offered; int booth_number; }; int main(void) { // TODO: Add your code here! return 0; }