摘要:
char* strins(char* dest, const char* src, int pos){ int len = strlen(src); for (int i = strlen(dest); i >= pos; i--) dest[i + len] = dest[i]; // 同时也拷贝字符串结束符 for (int j = pos; j < po... 阅读全文
posted @ 2012-05-04 17:10
edwardcmh
阅读(1914)
评论(0)
推荐(0)

浙公网安备 33010602011771号