Question
C Programming : 1. Write a statement that calls a function named AddToStock, passing the variable addQty. Assign computerInfo with the value returned by AddToStock.
C Programming :
1. Write a statement that calls a function named AddToStock, passing the variable addQty. Assign computerInfo with the value returned by AddToStock.
#include
typedef struct ProductInfo_struct { char itemName[30]; int itemQty; } ProductInfo;
ProductInfo AddToStock (ProductInfo productToStock, int increaseValue) { productToStock.itemQty = productToStock.itemQty + increaseValue;
return productToStock; }
int main(void) { ProductInfo computerInfo; int addQty = 10;
scanf("%s", computerInfo.itemName); scanf("%d", &computerInfo.itemQty);
/* Your solution goes here */
printf("Name: %s, stock: %d ", computerInfo.itemName, computerInfo.itemQty);
return 0; }
2. Find the maximum value and minimum value in milesTracker. Assign the maximum value to maxMiles, and the minimum value to minMiles. Sample output for the given program:
Min miles: -10 Max miles: 40
#include
int main(void) { const int NUM_ROWS = 2; const int NUM_COLS = 2; int milesTracker[NUM_ROWS][NUM_COLS]; int i; int j; int maxMiles = -99; // Assign with first element in milesTracker before loop int minMiles = -99; // Assign with first element in milesTracker before loop
milesTracker[0][0] = -10; milesTracker[0][1] = 20; milesTracker[1][0] = 30; milesTracker[1][1] = 40;
/* Your solution goes here */
printf("Min miles: %d ", minMiles); printf("Max miles: %d ", maxMiles);
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