Look at the following program segment:
struct Product
{
string description;
int partNum;
double cost;
};
Product discountItems[8];
Which of the following statements would display the cost member of the first Product structure in the discountItems array? Group of answer choices
A) ) cout << discountItems[0][2];
B) cout << discountItems.cost[0];
C) cout << discountItems[0].cost; \
D) << discountItems[0] << cost;