📜  C++中的wcscat()函数

📅  最后修改于: 2021-05-30 13:17:31             🧑  作者: Mango

wcscat()函数在头文件cwchar.h中指定,该函数用于将宽字符串的副本附加到另一个字符串的末尾。

句法:

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

参数:此函数有两个参数:

  • dest:指定指向目标数组的指针。
  • src:指定要添加到目标的字符串。

返回值:该函数返回新的附加字符串。

下面的程序说明了上述函数:

例子:-

// C++ program to demonstrate
// example of wcscat() function.
  
#include 
using namespace std;
  
int main()
{
  
    // maximum length of the destination string
    wchar_t dest[30];
  
    // maximum length of the source string
    wchar_t src[30];
  
    // initialize the destination string
    wcscpy(dest, L"Geekforgeeks ");
  
    // initialize the source string
    wcscpy(src, L"is the best");
  
  
    wcscat(dest, src);
    wprintf(L"%ls\n", dest);
    return 0;
}
输出:
Geekforgeeks is the best
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”