发布时间:2019-07-31 10:12:03
你要说明你要用的语言的,C的函数参考
void fun(const char *s,char *d,int m,int n){ int i; for(i=m;i<=n;i++) d[i-m]=s[i]; d[i]='\0'; }