C语言字符串函数大全C/C++基础 字符串操作大全

时间:2013-12-28 06:31:39
【文件属性】:
文件名称:C语言字符串函数大全C/C++基础 字符串操作大全
文件大小:139KB
文件格式:PDF
更新时间:2013-12-28 06:31:39
字符串 字符串操作大全 C语言字符串函数大全C/C++基础 函数名: stpcpy 功 能: 拷贝一个字符串到另一个 用 法: char *stpcpy(char *destin, char *source); 程序例: #include #include int main(void) { char string[10]; char *str1 = "abcdefghi"; stpcpy(string, str1); printf("%s\n", string); return 0; } 函数名: strcat 功 能: 字符串拼接函数 用 法: char *strcat(char *destin, char *source); 程序例: #include #include int main(void) { char destination[25]; char *blank = " ", *c = "C++", *Borland = "Borland"; strcpy(destination, Borland); strcat(destination, blank); strcat(destination, c); printf("%s\n", destination); return 0; } 函数名: strchr 功 能: 在一个串中查找给定字符的第一个匹配之处 用 法: char *strchr(char *str, char c);

网友评论

  • 基本知识加上例子,易学易用,更可作为参考,就是收录的少了一点。
  • 知识点很全,很好
  • 很基础的知识整理,不错