wcsncat()函数将源字符附加到目标,包括终止的空宽字符。如果源中字符串的长度小于num。然后,仅复制直到终止的空宽字符为止的内容。
用法:
wchar_t* wcsncat (wchar_t* destination, const wchar_t* source, size_t num)
参数:该函数接受三个强制性参数,如下所述:
- destination: 指定指向目标数组的指针
- source: 指定要添加到目标的字符串
- num: 指定要添加的最大字符数
返回值:该函数返回目的地。
以下示例程序旨在说明上述函数:
示例1:
// C++ program to illustrate
// wcsncat() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// maximum length of the destination string
wchar_t destination[20];
// maximum length of the source string
wchar_t source[20];
// initialize the destination string
wcscpy(destination, L"Geekforgeeks ");
// initialize the source string
wcscpy(source, L"is the best");
// initialize the length of
// the resulted string you want
wcsncat(destination, source, 20);
wprintf(L"%ls\n", destination);
return 0;
}
输出:
Geekforgeeks is the best
示例2:
// C++ program to illustrate
// wcsncat() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// maximum length of the destination string
wchar_t destination[40];
// maximum length of the source string
wchar_t source[40];
// initialize the destination string
wcscpy(destination, L"only some of the ");
// initialize the source string
wcscpy(source, L"letters will be copied");
// initialize the length of
// the resulted string you want
wcsncat(destination, source, 20);
wprintf(L"%ls\n", destination);
return 0;
}
输出:
only some of the letters will be copi
相关用法
- C++ log()用法及代码示例
- C++ div()用法及代码示例
- C++ fma()用法及代码示例
- C++ map key_comp()用法及代码示例
- C++ imag()用法及代码示例
- C++ real()用法及代码示例
- C++ valarray tan()用法及代码示例
- C++ regex_iterator()用法及代码示例
- C++ valarray pow()用法及代码示例
注:本文由纯净天空筛选整理自AmanSrivastava1大神的英文原创作品 wcsncat() function in C/C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。