Declare a vector named scores of twenty-five elements of type int .
LANGUAGE: C++
CHALLENGE:
Declare a vector named scores of twenty-five elements of type int.
SOLUTION:
vector <int> scores(25);
Declare a vector named scores of twenty-five elements of type int.
vector <int> scores(25);