#include #include typedef struct { char* name; int price; int count;} Item;// Market inventoryItem items[] = { {"Quiet Quiches", 10, 12}, {"Average Apple", 15, 8}, {"Fruitful Flag", 100, 1}};int numItems = sizeof(items) / sizeof(Item);int coins = 40;void displayItems() { printf("\nWelcome to the market!\n=====================\n"); printf("You have %d coins\n", coins); printf("\tItem\t\t\tPric..