一、strcpy
字符串拷贝函数:strcpy
eg: strcpy(a,"hello");//把hello拷贝到a字符串中
strcpy(a,b)//把b字符串拷贝到a字符串中


二、strcat
字符拼接函数: stycat(目的空间需要足够大放入拼接的字符串)
eg: stycat(a,"hello");//把hello拼接到a字符串后
如果a={"hi"};则拼接后为 hihello


三、strcmp
字符串比较函数: stycmp
eg: x=stycmp(a,b);
当x>0时,则a字符串大于b字符串;
当x<0时,则a字符串小于b字符串;
当x=0时,则a字符串等于b字符串;


四、strlen
获得字符串的长度
stylen(从字符串开头到\0中间字符的个数(不包含\0,包含空格))
eg: char a[]={"hello world"};
x=strlen(a);

