(编程技巧)求字符串长度
int str_len(char *a) { //字符串长度 if (a == 0) { return 0; } char *t = a; for (;*t;++t) ; return (int) (t - a); }