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