Question: Write a main program that calls functions totalSlices and printResults to print appropriate results. Function definitions for the 2 functions are given below. ANSWER IN

Write a main program that calls functions totalSlices and printResults to print appropriate results. Function definitions for the 2 functions are given below. ANSWER IN C LANGUAGE !

Function Definitions: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ int totalSlices (int numPizza, int slicesPerPizza) { int product;

product = numPizza * slicesPerPizza;

return product; } ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void printResults (int total) {

printf("Total number of slices = %d ", total); } ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ====================== Sample Input / Output: ====================== Enter number of pizzas: 3 Enter slices per pizza: 12

Total number of slices = 36

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!