摘要:
摘自:http://blog.csdn.net/crazyjixiang/article/details/6720236#实现C/C++中的字符串操作函数是很练内功的,别看着这些函数很简单,自己实现起来,还是有许... 阅读全文
posted @ 2012-07-17 20:43
wdliming
阅读(144)
评论(0)
推荐(0)
摘要:
摘自:http://blog.csdn.net/crazyjixiang/article/details/6720236#实现C/C++中的字符串操作函数是很练内功的,别看着这些函数很简单,自己实现起来,还是有许... 阅读全文
posted @ 2012-07-17 20:43
wdliming
阅读(132)
评论(0)
推荐(0)
摘要:
#include #include void UpperCase(char str[]){ int i=0; int len = strlen(str); for(i=0; i= 'a' && str[i] <=... 阅读全文
posted @ 2012-07-17 19:39
wdliming
阅读(501)
评论(0)
推荐(0)
摘要:
#include #include void UpperCase(char str[]){ int i=0; int len = strlen(str); for(i=0; i= 'a' && str[i] <=... 阅读全文
posted @ 2012-07-17 19:39
wdliming
阅读(246)
评论(0)
推荐(0)
摘要:
#include #include int main(void){ char *src = "LiMing"; int len = strlen(src); char *dest = (char*)mallo... 阅读全文
posted @ 2012-07-17 18:33
wdliming
阅读(97)
评论(0)
推荐(0)
摘要:
#include #include int main(void){ char *src = "LiMing"; int len = strlen(src); char *dest = (char*)mallo... 阅读全文
posted @ 2012-07-17 18:33
wdliming
阅读(98)
评论(0)
推荐(0)
摘要:
The ASCII codeAmerican Standard Code for Information InterchangeThe complete table of ASCII characters, co... 阅读全文
posted @ 2012-07-17 15:13
wdliming
阅读(216)
评论(0)
推荐(0)
摘要:
The ASCII codeAmerican Standard Code for Information InterchangeThe complete table of ASCII characters, co... 阅读全文
posted @ 2012-07-17 15:13
wdliming
阅读(339)
评论(0)
推荐(0)