摘要: #include <stdio.h>#define MAXLEN 20int *countInteger(char *p, int flag);main(){ char *host = "1a2 123456g78 69 89999"; int m,i; int *Noint; int L; int Arr[MAXLEN]; Noint = Arr; Noint = countInteger(host,0); L = countInteger(host,1); for(i=0;i<L;i++) { Arr[i] = *(Noint+i); } for(i= 阅读全文
posted @ 2013-05-20 08:32 王小二 阅读(6376) 评论(1) 推荐(0) 编辑