摘要: int getStrLength(char* str) { int i = 0; while (str[i] != '\0') { i++; } return i; } 阅读全文
posted @ 2019-03-14 20:24 NULL_ROOT 阅读(1531) 评论(0) 推荐(0)