Write a statement that declares and stores the elements of the following array into a vector object:
char vowels[5]={'a', 'e', 'i', 'o', 'u'};
I think this is what I need, but I want to verify this.
char vowels[5]={'a', 'e', 'i', 'o', 'u'};
vector<vowels> vowelsList (vowelsArray, vowelsArray +5);