字符串处理函数及示例

时间:2017-04-24 06:52:47
【文件属性】:

文件名称:字符串处理函数及示例

文件大小:11KB

文件格式:TXT

更新时间:2017-04-24 06:52:47

c c++ 字符串

字符串处理函数及示例 如: 函数名: strcpy 功 能: 拷贝一个字符串到另一个 用 法: char *strcpy(char *destin, char *source); 程序例: C/C++ code #include #include int main(void) { char string[10]; char *str1 = "abcdefghi"; stpcpy(string, str1); printf("%s\n", string); return 0; }


网友评论