loopmove

#include <QCoreApplication> //移动后面n个字节到前面,前面字符串后移。好比"123456", n = 3, //运行结果456123 char* loopmove(char* str, int n){ if(str == NULL) return NULL; char* head = str; char* head2 = str; c
相关文章
相关标签/搜索