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
相關文章
相關標籤/搜索