Contact: aviboots(AT)netvision.net.il
39,989 questions
51,934 answers
573 users
#include <iostream> #include <vector> int main(void) { std::vector<char> v = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'}; for (auto ch : v) { std::cout << ch << " "; } } /* run: a b c d e f g h */