13 lines
245 B
C
13 lines
245 B
C
#define __STDC_WANT_LIB_EXT1__ 1
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
void main()
|
|
{
|
|
char buffer[80];
|
|
|
|
strcpy_s( buffer, sizeof( buffer ), "Hello " );
|
|
strcat_s( buffer, sizeof( buffer ), "world" );
|
|
printf( "%s\n", buffer );
|
|
}
|