Answer:
i believe the answer is a but i could be wrong
Explanation:
i hope it helps
Answer:
What do you need help with?
Explanation:
Answer:
rafter is a structural component that is used as part of a roof construction. There are also different types of rafters
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: