I am trying to create an array of arrays containing 2 lists of strings (one singular and one plural).
string item_name[2][6];
string item_name[0] = {"bag of CinnaCandies", "can of Arizona Tea", "Starbucks Mocha Frappe", "copy of Section 8: Prejudice", "Sushi Box", "pair of Nike Jordans"};
string item_name[1] = {"bags of CinnaCandies", "cans of Arizona Tea", "Starbucks Mocha Frappes", "copies of Section 8: Prejudice", "Sushi Boxes", "pairs of Nike Jordans"};
I do not know the correct syntax to do this, and I would like to save it as an array of 2 arrays, so I can have code that says:
if (quantity > 1)
{
cout << item_name[0][index];
}
else
{
cout << item_name[1][index];
}
Thank.:)
source
share