Question
*C Programming* Assign Barbecue's caloriesPerSlice with the value in Four Cheese's caloriesPerSlice. #include #include typedef struct PizzaInfo_struct { char pizzaName[30]; int caloriesPerSlice; } PizzaInfo; int
*C Programming*
Assign Barbecue's caloriesPerSlice with the value in Four Cheese's caloriesPerSlice.
#include #include
typedef struct PizzaInfo_struct { char pizzaName[30]; int caloriesPerSlice; } PizzaInfo;
int main(void) {
PizzaInfo pizzasInStore[2];
strcpy(pizzasInStore[0].pizzaName, "Barbecue"); pizzasInStore[0].caloriesPerSlice = 350;
strcpy(pizzasInStore[1].pizzaName, "Four Cheese"); pizzasInStore[1].caloriesPerSlice = 310;
/* Your solution goes here */
printf("A %s pizza contains %d calories ", pizzasInStore[0].pizzaName, pizzasInStore[0].caloriesPerSlice); printf("A %s pizza contains %d calories ", pizzasInStore[1].pizzaName, pizzasInStore[1].caloriesPerSlice);
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started