数据结构 、串的基本操作 几种在C语言中常用的串运算 (1)求串长( ength): int strlen(char *s)i (2)串复制(copy) char *strcpy (char *to, char *from)i (3联接( concatenation): char strcat(char *to, char *from) (4)串比较( compare) int strcmp(char *s1, char *s2); (5)符定位( index) char strchr(char *s, char c)数据结构 tjm 三、串的基本操作 几种在C语言中常用的串运算: (1)求串长(length): int strlen(char *s); (2)串复制(copy): char *strcpy(char *to,char *from); (3)联接(concatenation): char strcat(char *to,char *from) (4)串比较(compare) int strcmp(char *s1,char *s2); (5)字符定位(index) char strchr(char *s,char c);