摘要:
#include<stdio.h>void trimspae(char *str,char *newstr){ char*p=str; int i,j,ncount; i=0; j=strlen(p)-1; if(str==NULL||newstr==NULL) { printf("func tri 阅读全文
摘要:
#include<stdio.h>int getcount(char *mystr,char *sub,char *ncount){ int ret=0; char *p=mystr; int tmpcount; if(mystr==NULL||sub==NULL||ncount==NULL) { 阅读全文