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
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
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。