刪除字符串多餘空格

void deleteBlank(char str[]) { int len = strlen(str), i, j, p, s, e = len; for(i = 0; i < len; ++i) { if(str[i] != ' ')continue; if(str[i+1] == ' ') p = i+1; for(j
相關文章
相關標籤/搜索