#define __STDC_WANT_LIB_EXT1__ 1 #include #include void main() { auto char buffer[80]; strcpy_s( buffer, sizeof( buffer ), "Hello " ); strcat_s( buffer, sizeof( buffer ), "world" ); printf( "%s\n", buffer ); }