size_t输出用"%zu"
size_t slength(const char *s) { size_t i=0; while(*s++)i++; return i; }
直接看string.length的