Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 answers
573 users
#include <iostream> #include <cwchar> int main() { wchar_t str[64] = L"c++"; wchar_t str_copy[32] = L" and c programming"; wcscat(str, str_copy); std::wcout << str; } /* run: c++ and c programming */