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