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 206 views
1 answer 135 views
1 answer 115 views
115 views asked Aug 7, 2024 by avibootz
1 answer 105 views
105 views asked Aug 7, 2024 by avibootz
1 answer 146 views
146 views asked Jun 22, 2017 by avibootz
1 answer 170 views
170 views asked Jun 22, 2017 by avibootz
...