#include "stdafx.h" #include <iostream> #include <string> using namespace std; char *delete_chars(char *str,int pos,int len) { char *p=str+pos-1; int tt=strlen(str); if (pos<1||(pos>tt)) //pos小于1 或者pos超出字符串长度 { return str; } if ((p+len-str)>tt) //len大于pos后剩余的字符个数 { *p='