How to concatenate wide character strings in C++

1 Answer

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

*/

 



answered Nov 27, 2022 by avibootz

Related questions

2 answers 196 views
1 answer 127 views
1 answer 102 views
102 views asked Aug 7, 2024 by avibootz
1 answer 93 views
93 views asked Aug 7, 2024 by avibootz
1 answer 137 views
137 views asked Jun 22, 2017 by avibootz
1 answer 155 views
155 views asked Jun 22, 2017 by avibootz
...