摘要: 1 #include <stdio.h> 2 3 int charCount(char *str) 4 { 5 int iCount = 0; 6 int i, j, k=0; 7 char *p = str; 8 char *q = p; 9 while (*p) 10 { 11 p++; 12 阅读全文
posted @ 2015-12-18 01:01 chifandeyu 阅读(1168) 评论(0) 推荐(0) 编辑