摘要:
原始博文网址,无意侵权,只是想记下来以后复习的时候方便,http://www.cnblogs.com/cumtchw/p/4523332.htmlhttp://www.cnblogs.com/zhangziqiu/archive/2011/03/30/ComputerCode.html机器数一个数在... 阅读全文
摘要:
1 #include 2 #include 3 4 void reverse( char *s ) /*将字符串逆置*/ 5 { 6 int length; 7 int i = 0; 8 char temp; 9 length = strlen( s... 阅读全文