Question: This is my part1 header file : // ---------------------------------------------------------------------------- // defines/macros #define MAX_NUM_PRODUCTS 3 #define GRAMS_NUMBER 64 #define ONE_LBS_IN_KG 2.20462 // ---------------------------------------------------------------------------- // structures struct

This is my part1 header file :

// ---------------------------------------------------------------------------- // defines/macros #define MAX_NUM_PRODUCTS 3 #define GRAMS_NUMBER 64 #define ONE_LBS_IN_KG 2.20462

// ---------------------------------------------------------------------------- // structures struct CatFoodInfo { int sku; double price; double weight; int calories; }; struct ReportData { int pro_sku; int productPrice; int caloriesPerServing; double weightLbs; double weightKg; double weightG; double totalServings; double costPerServing; double costPerCalorie; };

// ---------------------------------------------------------------------------- // function prototypes

// PART-1

// 1. Get user input of int type and validate for a positive non-zero number // (return the number while also assigning it to the pointer argument) int getIntPositive(int* x);

// 2. Get user input of double type and validate for a positive non-zero number // (return the number while also assigning it to the pointer argument) double getDoublePositive(double* x);

// 3. Opening Message (include the number of products that need entering) void openingMessage(const int numProducts);

// 4. Get user input for the details of cat food product struct CatFoodInfo getCatFoodInfo(const int seqenceNum);

// 5. Display the formatted table header void displayCatFoodHeader(void);

// 6. Display a formatted record of cat food data void displayCatFoodData(int sku, double price, int calories, double* weight);

This is my w8p1.c file : #define _CRT_SECURE_NO_WARNINGS

// System Libraries #include

// User-Defined Libraries #include "w8p2.h"

// ---------------------------------------------------------------------------- // PART-1

// 1. Get user input of int type and validate for a positive non-zero number // (return the number while also assigning it to the pointer argument)

int getIntPositive(int* x) { int value; scanf("%d", &value); while (value

// 2. Get user input of double type and validate for a positive non-zero number // (return the number while also assigning it to the pointer argument) double getDoublePositive(double* x) { double value; scanf("%lf", &value); while (value

// 3. Opening Message (include the number of products that need entering) void openingMessage(const int numProducts) { printf("Cat Food Cost Analysis "); printf("====================== "); printf(" "); printf("Enter the details for %d dry food bags of product data for analysis. ", numProducts); printf("NOTE: A 'serving' is %dg ", GRAMS_NUMBER); }

// 4. Get user input for the details of cat food product struct CatFoodInfo getCatFoodInfo(const int seqenceNum) { struct CatFoodInfo prod; printf(" Cat Food Product #%d " "-------------------- ", seqenceNum); printf("SKU : "); prod.sku = getIntPositive(NULL); printf("PRICE : $"); prod.price = getDoublePositive(NULL); printf("WEIGHT (LBS) : "); prod.weight = getDoublePositive(NULL); printf("CALORIES/SERV.: "); prod.calories = getIntPositive(NULL); return prod; }

// 5. Display the formatted table header void displayCatFoodHeader(void) { printf("SKU $Price Bag-lbs Cal/Serv "); printf("------- ---------- ---------- -------- "); }

// 6. Display a formatted record of cat food data void displayCatFoodData(int sku, double* price, int calories, double* weight) { printf("%07d %10.2lf %10.1lf %8d ", sku, *price, *weight, calories); }

This is my part1 header file : // ---------------------------------------------------------------------------- // defines/macros #defineMAX_NUM_PRODUCTS 3 #define GRAMS_NUMBER 64 #define ONE_LBS_IN_KG 2.20462// ---------------------------------------------------------------------------- // structures structCatFoodInfo { int sku; double price; double weight; int calories; }; structReportData { int pro_sku; int productPrice; int caloriesPerServing; double weightLbs; double weightKg;double weightG; double totalServings; double costPerServing; double costPerCalorie; };// ---------------------------------------------------------------------------- // functionprototypes// PART-1// 1. Get user input of int type and validate fora positive non-zero number // (return the number while also assigning itto the pointer argument) int getIntPositive(int* x); // 2. Get user input

File w8p2.h (header file) 1. Add another macro that represents the conversion factor of the number of U.S. pounds (Ibs) in a KG unit value 2.20462) - this will be used in conversions from lbs to metric units later on 2. Add another structure "ReportData" with the following related members that can hold: . a whole number for storing a product sku number (unique identifier) a double floating-point number for the product price a whole number for storing calories per suggested serving a double floating-point number for the product weight in pounds (Ibs) a double floating-point number for the product weight in kilograms (kg) a whole number for the product weight in grams (8) a double floating-point number for the total servings a double floating-point number for the cost per serving a double floating-point number for the cost of calories per serving 3. You will need to create an additional ten (10) functions. In this file, add the necessary prototypes (numbering continues from Part-1). Here are the names (case sensitive) for these new functions along with a short description to help you create the necessary return types and parameter information for each: 1. convertLbsKs Returns a double floating-point number Receives an address that points to an unmodifiable double floating-point data type representing the pounds (lbs) to be converted (provide a meaningful parameter name) Receives an address that points to a double floating-point data type representing the conversion result (equivalent kilograms (kg)) - provide a meaningful parameter name Note: This function returns the pounds (Ibs) to kilograms (kg) conversion in two ways: o Return value o Via the pointer argument 2. convertLbsG Returns a whole number Receives an address that points to an unmodifiable double floating-point data type representing the pounds (lbs) to be converted (provide a meaningful parameter name) Receives an address that points to a whole number data type representing the conversion result (equivalent grams (g)) - provide a meaningful parameter name Note: This function returns the pounds (Ibs) to grams (g) conversion in two ways: Return value o Via the pointer argument 3. convertLbs Does not return a value Receives an address that points to an unmodifiable double floating-point data type representing the pounds (lbs) to be converted (provide a meaningful parameter name) Receives an address that points to a double floating-point data type representing the conversion result (equivalent kilograms (kg)) - provide a meaningful parameter name Receives an address that points to a whole number data type representing the conversion result (equivalent (g)) - provide a m4. calculateServings Returns a double floating-point number Receives an unmodifiable whole number representing the serving size in grams Receives an unmodifiable whole number representing the total grams for a product Receives an address that points to a double floating-point data type representing the calculated result (number of servings) Note: This function returns the calculated result in two ways: Return value o Via the pointer argument 5. calculateCostPerServing Returns a double floating-point number Receives an address to an unmodifiable double floating-point data type representing the product price Receives an address to an unmodifiable double floating-point data type representing the total number of servings Receives an address to a double floating-point data type representing the calculated result (cost per serving) Note: This function returns the calculated result in two ways: Return value Via the pointer argument 6. calculateCostPerCal Returns a double floating-point number Receives an address to an unmodifiable double floating-point data type representing the product price Receives an address to an unmodifiable double floating-point data type representing the total number of calories Receives an address to a double floating-point data type representing the calculated result (cost per calorie) Note: This function returns the calculated result in two ways: Return value o Via the pointer argument 7. calculateReportData Returns a "ReportData" type Receives an unmodifiable "CatFoodInfo" data type representing and item of product data 8. displayReportHeader (this function is provided for you) Does not return a value nor receive any arguments 9. displayReportData Does not return a value Receives an unmodifiable "ReportData" data type representing the data to be displayed for a single row in the report Receives an unmodifiable whole number representing if the received record is the cheapest product option 10. displayFinalAnalysis Does not return a value Receives an unmodifiable "CatFoodInfo" data type representing the data of the cheapest product File w8p2.c (source file) 1. In this file, you will continue to code the function definitions (implementation) for the new functions prototyped in the header file.2. Include the necessary system and user-defined libraries you need for the application (system libraries use angle brackets (), while user-defined use double quotes ("") 3. Use the supplied w6p2.c file comments to help you locate where to insert your code logic Note: Move function #7 ("start") to the end of the file so it is easy to locate and see how the main logic is implemented 4. Code each function definition implementation based on the prototypes declared in the header file. Below describes each function in a little more detail (numbering continues from the function listing in Part-1 and matches the header file function listing described earlier): 8. convertLbsKg This function should convert the received argument representing the pounds value (Ibs) to kilograms (kg) by coding the necessary mathematical statement(s) Use the macro previously created to help in the conversion (see previous header file section) This function must return the converted value in two ways: One: by assigning the result to the 2nd pointer argument (only if it is NOT NULL) Two: by "return"ing the result Refer to the main2.c file to see how this function is "pre-tested" 9. convertLbsG This function should convert the received argument representing the pounds value (Ibs) to grams (g) by coding the necessary mathematical statement(s) Hint: There may be a function you already coded to help with this This function must return the converted value in two ways: One: by assigning the result to the 2"d pointer argument (only if it is NOT NULL) o Two: by "return"ing the result o Refer to the main2.c file to see how this function is "pre-tested" 10. convertLbs This function should convert the received argument representing the pounds value (Ibs) to both, kilograms (kg), and grams (@) Use the previously coded functions to perform these needed conversions Note: return the converted values by assigning the results to the respective pointer argument variables Refer to the main2.c file to see how this function is "pre-tested" 11. calculateServings Using the values supplied in the first two received arguments, code the necessary mathematical statement(s) to derive the total servings This function must return the converted value in two ways: One: by assigning the result to the 3"d pointer argument (only if it is NOT NULL) o Two: by "return"ing the result 12. calculateCostPerServing Using the values supplied in the first two received arguments, code the necessary mathematical statement(s) to derive the cost per serving This function must return the converted value in two ways: o One: by assigning the result to the 3" pointer argument (only if it is NOT NULL) o Two: by "return"ing the result 13. calculateCostPerCal Using the values supplied in the first two received arguments, code the necessary mathematical statement(s) to derive the cost per calorieThis function must return the converted value in two ways: One: by assigning the result to the 3" pointer argument (only if it is NOT NULL) Two: by "return"ing the result 14. calculateReportData Review the function prototype description in this document to relate the arguments received by this function This function must return a ReportData data type, therefore, you will need to create a local variable of this type, assign the required values to it, and return the variable accordingly. The ReportData variable you create, will contain the required data for a single record in the analysis report. All the data assigned will be derived from the 1" argument received by this function The first 4 members of the ReportData variable can be directly assigned using the 1s parameter received to this function (referencing the appropriate members) The remaining members of the ReportData variable are calculated values. You should apply the appropriate previously created functions to help you accomplish this. All the data required for the calculations is at your disposal either via the 1s argument, or the values already calculated and stored to the ReportData variable The last statement in your function should be the returning of the local variable of type ReportData 15. displayReportHeader This function definition is provided for you - however, you will need to complete one missing part that substitutes the suggested "serving" size (in grams) as noted in yellow highlighted "???" below. This value should be supplied using one of the macro's you created (see the header file section). printf ("Analysis Report (Note: Serving = Xdg\\m", (??); printf (" - - - - --..-."- --- \\"); printf ("sku $price Bag- 1bs Bag-KE Bag-g cal/serv Servings $/Serv $/cal\\"); printf (" - - 16. displayReportData This function will display the values of a ReportData type as a formatted row in the report Use the following formatting and fill-in the missing parts as required: printf("207d *10.21f *10. Ilf x10.4lf *9d *8d *8. 1lf %7.21f *7.51f", . .. Note: If the 2nd argument received by this function is a non-zero value, you must append to the displayed row, a series of three asterisks "***" to indicate that this product has been identified as the cheapest. 17. displayFinalAnalysis This function should display the final analysis recommendation message Use the argument received by this function to access the required data details Also, include a closing message "Happy shopping!" 7. start Upgrade this function to include the data analysis component You need to create an array variable of type "ReportData" and size it using the appropriate macro defined in the header file - this will be the same size as what was used for the array of "CatFoodInfo" done in Part-1 (be sure to initialize it to a safe empty state) You will need to create other local variables to help in the determination of the cheapest product which is based on cost per serving (a calculated value) Locate the logic in this function that processes user input for the product data (this should be nested inside an iteration construct). Immediately following that line, add a function call to "calculateReportData" and assign the returned value to the new array you just created (of type ReportData).Hints o Use the same iterator variable for the index as was used in the assignment of the CatFoodInfo in the previous statement Send as the 1s argument to "calculateReportData" the "CatFoodInfo" data just entered by the user - You must also at some point determine which CatFoodInfo product is the cheapest based on the cost per serving. o This can be coded in a few places within this function, so you can determine the necessary logic and variables required to accomplish this o Hint: When you determine which CatFoodInfo product is the cheapest, you will need to store the array index of this product so you can reference the element whenever you need to afterwards/later in the function - After displaying the CatFoodInfo list of products (the formatted table done in Part-1), display the results of the "ReportData" array in a formatted table. Use the new functions you developed to accomplish this. - Finally, end the function with a call to the function that displays the final analysis results (Hint: this is where the saved index from before comes in (@)Part-2 DUtEut Example [Note: Use the 1~i"ELL|13|'I.."I..' highlighted user-input data for submissioni Pre-testing Helper Functions For each of these tests, enter the following three values (space delimited): -1 D 24 TESTl: l B 2d ERROR: Enter a positive value: ERROR: Enter a positive value: (PASSED) TEST2: 1 B 2d ERROR: Enter a positive value: ERROR: Enter a positive value: (PASSED) TEST3: 1 B 24 ERROR: Enter a positive value: ERROR: Enter a positive value: (PASSED) For each of these tests, enter the following three values (space delimited): 1 D 32.5 TESTl: l B 52.5 ERROR: Enter a positive value: ERROR: Enter a positive value: (PASSED) TEST-2: -1 B 32.5 ERROR: Enter a positive value: ERROR: Enter a positive value: (PASSED) TEST3: 1 B 52.5 ERROR: Enter a positive value: ERROR: Enter a positive value: (PASSED) Test1: (PASSED) Test2: (PASSED) Test3: (PASSED) Test-2: Test-3: Function: convertLbs Test-1: Starting Main Program Logic cat Food Cost Analysis Enter the details for 3 dry food bags of product data for analysis. NOTE: A 'serving" is 64g Cat Food Product #1 SKU : 0 ERROR: Enter a positive value: 12221 PRICE : $0 ERROR: Enter a positive value: 26.99 WEIGHT (LBS) : 0 ERROR: Enter a positive value: 2.5 CALORIES/SERV. : 0 ERROR: Enter a positive value: 325 Cat Food Product #2 SKU 34443 PRICE : $71.99 WEIGHT (LBS) : 13.0 CALORIES/SERV. : 325 Cat Food Product #3 SKU : 23332 PRICE : $41.99 WEIGHT (LBS) 1 5.5 CALORIES/SERV. : 325 SKU $price Bag-1bs cal/Serv 0012221 26.99 323 0034443 71.99 13,0 325 0023332 41.99 5.5 325 Analysis Report (Note: Serving = 648) SKU $Price Bag-1b5 Bag-kg Bag-g cal/Serv Servings $/Serv $/cal - - -- 0012221 26.9 2.5 1. 1346 1133 325 17. 7 1.52 0. 00469 0034443 71.95 13.0 5. 8967 5896 325 92.1 0.78 0.00240 *** 0023332 41.99 5.5 2.4948 2494 375 39.0 1. 08 0.00332 Final Analysis Based on the comparison data, the PURRR-fect economical option is: SKU: 0034443 Price: $71.99 Happy shopping!// PART-2 // 8. convert lbs: kg // 9. convert 1bs : g // 10. convert lbs: kg / g // 11. calculate: servings based on gPerServ // 12. calculate: cost per serving // 13. calculate: cost per calorie // 14. Derive a reporting detail record based on the cat food product data // 15. Display the formatted table header for the analysis results void displayReportHeader (void); // 16. Display the formatted data row in the analysis table // 17. Display the findings (cheapest) // 7. Logic entry point

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 Programming Questions!