HUH函数
可以自己定义一个函数来完成,举例如下://#include "stdafx.h"//If the vc++6.0, with this line.#include "stdio.h"/*本函数将源字符串s中第n个下标开始的m个字符拷入目标t并在最后补'\0'*/char *myfun(char *t,const char *s,int n,int m){char *p=t;if(m){//m为0时特殊处理返回NULLs+=n;while(*p++=*s++, --m && *s);*p='\0';return t;}return NULL;}int main(void){//测试一下char a[10];char *b="abcdefghi";printf("%s\n",myfun(a,b,1,3));return 0;}