摘要: 函数名: stpcpy功 能: 拷贝一个字符串到另一个用 法: char *stpcpy(char *destin, char *source);程序例:#include <stdio.h>#include <string.h>int main(void){char string[10];char *str1 = "abcdefghi";stpcpy(string, str... 阅读全文
posted @ 2010-09-06 13:54 light life 阅读(247) 评论(0) 推荐(0) 编辑