摘要: 函数名: strcat 功 能: 字符串拼接函数 用 法: char *strcat(char *destin, char *source); 程序例:#include <string.h> #include <stdio.h>int main(void) { char destination[25]; char *blank = " ", *c = "C++", *Borland = "Borland"; strcpy(destination, Borland); strcat(destination, bl 阅读全文
posted @ 2012-04-19 16:15 琳&leen 阅读(653) 评论(0) 推荐(0) 编辑