[字符串长度] 计算字符串长度 #字符串处理
int StringLength(char* str){ int len = 0; while(str[len++]) ; //str[len++] != '\0' return len - 1; }