嗯。strncpy只能拷前面的,拷贝中间的不行了!!还是用数组来一个一个的复制吧!!!
啊,对啊,你都知道怎么做了,还问什么?
char srcStr[] = "justAnExample";char destStr[10+1] = "";strncpy(destStr, srcStr+2, 10);拷贝第三个字符起,后面的十个字符