strlen:
计算字符串的长度,不包括 “\0"
printf( "%d \n",strlen( array)); 计算array 的长度
strcpy:
字符串的拷贝
char a [ ] = "hello";
char b [ ] = "world";
strcpy( a ,b ); //将b的值拷贝到a中,hello会被world覆盖.
strcmp:
判断两个字符串(只能)的关系
int strcmp( s1 , s2 );
s1<s2:返回负数
s1 =s2:返回0
s1 > s2:返回正数 // 按照字符的ASCII的值 比较
strcat:
将两个字符串拼接在一起,自动删除前一个字符串的 "\0"
char a [ ] = "hello";
char b [ ] = "world";
strcat( a ,b );
printf("%s \n",a);//输出helloworld