Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 answers
573 users
#include <iostream> #include <cwchar> int main() { wchar_t str[] = L"c++ programming"; wchar_t str_copy[32]; wcscpy(str_copy, str); std::wcout << str_copy; } /* run: c++ programming */