#include<stdio.h>
#include<string.h>
#include<math.h>
int main()
{
int len;
char str_1[20]="hello, I'm sure";
len = strlen(str_1);
printf("字符串的长度是:%d",len);
char str_2[20]="I think";
char str_3[20]="....";
strcat(str_1, str_2);
printf("合并后:%s",str_1);
strncat(str_1,str_3,2);
printf("新合并后:%s",str_1);
return 0;
}