I think because if you’ve already turned it in they might as well grade asap instead of waiting
Answer:
Explanation:
A woman walks due west on the deck of a ship at 3 miyh.The ship is moving north at a speed of 22 miyh.Find the speed and direction of the woman relative to the surface of the water.
I think the answer is B. 10D
15x -/c/ fb is the answer
Answer:
#include <stdio.h>
typedef struct InventoryTag_struct {
int itemID;
int quantityRemaining;
} InventoryTag;
int main(void) {
InventoryTag redSweater;
redSweater.itemID = 314;
redSweater.quantityRemaining = 500;
/* Your solution goes here */
printf("Inventory ID: %d, Qty: %d\n",redSweater.itemID,redSweater.quantityRemaining);
getchar();
return 0;
}
Explanation: