C语言字符串函数大全
C语言字符串函数大全 函数名: stpcpy 功 能: 拷贝一个字符串到另一个 用 法: char *stpcpy(char *destin, char *source); 程序例: 1 #include <stdio.h> 2 3 #include <string.h> 4 5 6 7 int main(void) 8 9 { 10 11 char string[10]; 12 13 char *str1 = "abcdefghi"; 14 15 16 17 stpcpy(string, str1); 18 19 printf("%s\n", string); 20 21 return 0; 22 23 } 函数名: strcat 功 能: 字符串拼接函数 用 法: char *strcat(char *destin, char *source); 程序例: 1 #include <string.h> 2 3 #include <stdio.h> 4 5 6 7 int main(void) 8 9 { 10 11 char destination[25]; 12 13 char *blank = " ", *c = "C++", *Borland = "Borland"; 14 15 16 17 strcpy(destination, Borland); 18 19