wcstok() function in C++ with example
The wcstok() function is defined in cwchar.h header file. The wcstok() function returns the next token in a null terminated wide string. The pointer delim points to the separator characters i.e. the delimiter. .Syntax: wchar_t* wcstok(wchar_t* str, const wchar_t* delim, wchar_t ** ptr); Parameters: