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


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


wcscpy()函数在cwchar.h头文件中定义。 wcscpy()函数用于将宽字符串从源复制到目标。

用法:

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

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


  • dest:指定指向目标数组的指针。
  • src:指定指向源数组的指针。

返回值:wcscpy()函数返回修改后的目标。

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

例:-

// C++ program to demonstrate 
// example of wcscpy() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // maximum length of the destination string 
    wchar_t dest[40]; 
  
     // initialize the source string 
    wchar_t src[]=L"A computer science portal for geeks"; 
  
// Print the source string 
    wcout << L"Source:" << src << endl; 
  
// Print the destination string 
    wcout << L"Destination:" << dest << endl; 
  
// Copy source to destination 
    wcscpy(dest, src); 
  
// Print the modified destination 
    wcout << L"After modification, destination:" << dest; 
  
    return 0; 
}
输出:
Source:A computer science portal for geeks
Destination:
After modification, destination:A computer science portal for geeks


相关用法


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