/* wcscat example */ #include <wchar.h> int main () { wchar_t wcs[80]; wcscpy (wcs,L"these "); wcscat (wcs,L"wide strings "); wcscat (wcs,L"are "); wcscat (wcs,L"concatenated."); wprintf (L"%ls\n",wcs); return 0; } |
these wide strings are concatenated. |
strcat | 连接字符串(function ) |
wcsncat | 在宽字符串中追加字符(function ) |
wcscpy | 宽字符串拷贝(function ) |
wmemcpy | 复制宽字符块(function ) |