3.1 - ARRAY arguments, char vs int.
It seems you pass a char OR an int to a substring of an array. Does it matter which one?
ex:
char charValue = 5;
int intValue = 5;
string awesomeArray[9] = {"truck", "car", "boat", "table", "ocean", "cat", "board", "finicky"};
//Both of these work. Is either a better choice?
cout << awesomeArray[charValue];
cout << awesomeArray[intValue];
system("PAUSE");
return 0;