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


C++ wcsncat()用法及代碼示例


wcsncat()函數將源字符附加到目標,包括終止的空寬字符。如果源中字符串的長度小於num。然後,僅複製直到終止的空寬字符為止的內容。

用法:

wchar_t* wcsncat (wchar_t* destination, const wchar_t* source, size_t num)

參數:該函數接受三個強製性參數,如下所述:


  • destination: 指定指向目標數組的指針
  • source: 指定要添加到目標的字符串
  • num: 指定要添加的最大字符數

返回值:該函數返回目的地。

以下示例程序旨在說明上述函數:

示例1:

// C++ program to illustrate 
// wcsncat() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // maximum length of the destination string 
    wchar_t destination[20]; 
  
    // maximum length of the source string 
    wchar_t source[20]; 
  
    // initialize the destination string 
    wcscpy(destination, L"Geekforgeeks "); 
  
    // initialize the source string 
    wcscpy(source, L"is the best"); 
  
    // initialize the length of 
    // the resulted string you want 
    wcsncat(destination, source, 20); 
    wprintf(L"%ls\n", destination); 
    return 0; 
}
輸出:
Geekforgeeks is the best

示例2:

// C++ program to illustrate 
// wcsncat() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // maximum length of the destination string 
    wchar_t destination[40]; 
  
    // maximum length of the source string 
    wchar_t source[40]; 
  
    // initialize the destination string 
    wcscpy(destination, L"only some of the  "); 
  
    // initialize the source string 
    wcscpy(source, L"letters will be copied"); 
  
    // initialize the length of 
    // the resulted string you want 
    wcsncat(destination, source, 20); 
    wprintf(L"%ls\n", destination); 
    return 0; 
}
輸出:
only some of the  letters will be copi


相關用法


注:本文由純淨天空篩選整理自AmanSrivastava1大神的英文原創作品 wcsncat() function in C/C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。