How to copy wide character string to another in C++

1 Answer

0 votes
#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

*/

 



answered Nov 27, 2022 by avibootz

Related questions

1 answer 102 views
102 views asked Aug 7, 2024 by avibootz
1 answer 102 views
102 views asked Aug 7, 2024 by avibootz
1 answer 137 views
137 views asked Jun 22, 2017 by avibootz
1 answer 127 views
1 answer 127 views
1 answer 136 views
...