Contact: aviboots(AT)netvision.net.il
41,656 questions
54,319 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 */