摘要: 1. strlen(),计算字符串长度 1 int strlen(const char string) 2 3 { 4 5 int i=0; 6 7 while(string[i]) i++; 8 9 return i; 10 11 } 2. strcpy(), 字符串拷贝.1 char *strcpy(char *destination, const char *source) 2 3 { 4 5 while(*destinaton++=*source++); 6 7 return (destinat... 阅读全文
posted @ 2012-08-01 15:31 ifeixiang 阅读(294) 评论(0) 推荐(0) 编辑