I am trying to make a vector to look like this: alphabet= {start,A,B,C,D,E,F,G,H,I,J,K,etc..,end}
The alphabet doesn't go from A to Z, the user inputs the values. So if user inputs 5, I want the vector to be: {start,A,B,C,D,E,end}
I tried using iota but I don't know how to push the "start" and "end" at the extremities of the vector
vector<string> alphabet;
iota(alphabet.start(), alphabet.end(), 'A');
How to push the start
and end
values?