當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。