Contact: aviboots(AT)netvision.net.il
40,900 questions
53,338 answers
573 users
#include <iostream> #include <vector> int main(void) { std::vector<wchar_t> v = {L'a', L'b', L'c', L'd', L'e', L'f', L'g'}; for (auto ch : v) { std::wcout << ch << " "; } } /* run: a b c d e f g */