Question: CHALLENGE ACTIVITY 7.3.2: Structs and arrays. Jump to level 1 7 Declare an array named listOfPizzas that stores 3 items of type Pizza. 2 3

CHALLENGE ACTIVITY 7.3.2: Structs and arrays. Jump to level 1 7 Declare an array named listOfPizzas that stores 3 items of type Pizza. 2 3 1 #include 2 #include 3 4 typedef struct Pizza_struct { 5 char pizzaName [75]; 6 char ingredients[75]; 7 } Pizza; 8 9 int main(void) { 10 11 1* Your code goes here */ 12 13 strcpy(listOfPizzas[0].pizzaName, "Barbecue"); 14 strcpy(listOfPizzas[1].pizzaName, "Carbonara"); 15 strcpy(listOfPizzas[2].pizzaName, "Ham and Cheese"); 16 strcpy(listOfPizzas[0].ingredients, "Beef, chicken, bacon, barbecue sauce"); 17 strcpy(listOfPizzas[1]. ingredients, "Mushrooms, onion, creamy sauce"); 18 strcpy(listOfPizzas[2]. ingredients, "Ham, cheese, bacon"); 19 20 printf("%s:%s ", listOfPizzas[0].pizzaName, listOfPizzas[0].ingredients); 21 printf("%s:%s ", listOfPizzas[1].pizzaName, listOfPizzas[1]. ingredients); 22 printf("%s:%s ", listOfPizzas[2].pizzaName, listOfPizzas[2]. ingredients); 23 24 return 0; 25 }