当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ wcscat()用法及代码示例


在头文件cwchar.h中指定了wcscat()函数,该函数用于将宽字符串的副本附加到另一个字符串的末尾。

用法:

wchar_t* wcscat( wchar_t* dest, const wchar_t* src );

参数:此函数有两个参数:


  • dest:指定指向目标数组的指针。
  • src: 指定要添加到目标的字符串。

返回:此函数返回新的附加字符串。

以下示例程序旨在说明上述函数:-

例:-

// C++ program to demonstrate 
// example of wcscat() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // maximum length of the destination string 
    wchar_t dest[30]; 
  
    // maximum length of the source string 
    wchar_t src[30]; 
  
    // initialize the destination string 
    wcscpy(dest, L"Geekforgeeks "); 
  
    // initialize the source string 
    wcscpy(src, L"is the best"); 
  
  
    wcscat(dest, src); 
    wprintf(L"%ls\n", dest); 
    return 0; 
}
输出:
Geekforgeeks is the best


相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 wcscat() function in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。