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


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


wcsncpy()函数在cwchar.h头文件中定义。 wcsncpy()函数将指定数量的宽字符从源复制到目标。

用法:

wchar_t *wcsncpy(wchar_t *dest, 
                 const wchar_t *src, 
                 size_t n);

参数:此方法接受以下三个参数:


  • dest:指定指向目标数组的指针。
  • src:指定指向源数组的指针。
  • n:表示要复制的字符数。

返回值:此函数返回修改后的目标。

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

范例1:

// c++ program to demonstrate 
// example of wcsncpy() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialize the source string 
    wchar_t src[] = L"A Computer Science portal for geeks"; 
  
    // maximum length of the destination string 
    wchar_t dest[40]; 
  
    // copy the source to destination using wcsncpy 
    wcsncpy(dest, src, 19); 
  
    // Print the copied destination 
    wcout << "Destination string is:" << dest; 
  
    return 0; 
}
输出:
Destination string is:A Computer Science

示例2:

// c++ program to demonstrate 
// example of wcsncpy() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialize the source string 
    wchar_t src[] = L"GeeksforGeeks"; 
  
    // maximum length of the destination string 
    wchar_t dest[40]; 
  
    // copy the source to destination using wcsncpy 
    wcsncpy(dest, src, 5); 
  
    // Print the copied destination 
    wcout << "Destination string is:" << dest; 
  
    return 0; 
}
输出:
Destination string is:Geeks


相关用法


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