文字列を追加します。 これらの関数のセキュリティを強化したバージョンについては、「strcat_s、wcscat_s、_mbscat_s」を参照してください。 コピー char *strcat( char *strDestination, const char *strSource ); wchar_t *wcscat( wchar_t *strDestination, const wchar_t *strSource ); unsig...
#include <string.h> #include <stdio.h> void main( void ) { char string[80]; strcpy( string, "Hello world from " ); strcat( string, "strcpy " ); strcat( string, "and " ); strcat( string, "strcat!" ); printf( "String = %s\n", string ); } // Output String = Hello world...
char*strcat(char*strDestination,constchar*strSource);wchar_t*wcscat(wchar_t*strDestination,constwchar_t*strSource);unsignedchar*_mbscat(unsignedchar*strDestination,constunsignedchar*strSource);Expand table Routine Required Header Compatibility strcat <string.h> ANSI, Win 95, Win NT wcscat <string...
char *strcat( char *strDestination, const char *strSource);wchar_t *wcscat( wchar_t *strDestination, const wchar_t *strSource); ParametersstrDestination Null-terminated destination string. strSource Null-terminated source string.Return ValuesEach...
#include <string.h> #include <stdio.h> void main( void ) { char string[80]; strcpy( string, "Hello world from " ); strcat( string, "strcpy " ); strcat( string, "and " ); strcat( string, "strcat!" ); printf( "String = %s\n", string ); } // Output String = Hello world...
); wchar_t *wcscat( wchar_t *strDestination, const wchar_t *strSource ); unsigned char *_mbscat( unsigned char *strDestination, const unsigned char *strSource ); template <size_t size> char *strcat( char (&strDestination)[size], ...
Add Share via Facebookx.comLinkedInEmail strcat_s,wcscat_s,_mbscat_s,_mbscat_s_l Article 12/02/2022 8 contributors Feedback In this article Syntax Return value Remarks Requirements Show 2 more Appends a string. These versions ofstrcat,wcscat,_mbscathave security enhancements, as described in...
); wchar_t *wcscat( wchar_t *strDestination, const wchar_t *strSource ); unsigned char *_mbscat( unsigned char *strDestination, const unsigned char *strSource ); template <size_t size> char *strcat( char (&strDestination)[size], ...
Append a string. More secure versions of these functions are available; seestrcat_s, wcscat_s, _mbscat_s. Kopieren char *strcat( char *strDestination, const char *strSource ); wchar_t *wcscat( wchar_t *strDestination, const wchar_t *strSource ...
文字列を追加します。 これらの関数は、「CRT のセキュリティ機能」に説明されているように、strcat、wcscat、_mbscatのセキュリティが強化されたバージョンです。 コピー errno_t strcat_s( char *strDestination, size_t numberOfElements, const char *strSource ); errno_t wcscat_s( wchar_t...