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


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