I\'m currently seeing a lot of questions which are tagged C++ and are about handling arrays. There even are questions which ask about methods/features for arrays which a
Because C++03 has no vector literals. Using arrays can sometime produce more succinct code.
Compared to array initialization:
char arr[4] = {'A', 'B', 'C', 'D'};
vector initialization can look somewhat verbose
std::vector v; v.push_back('A'); v.push_back('B'); ...