本文共 230 字,大约阅读时间需要 1 分钟。
#include int fun(char *p) { if(*p=='\0') { return 0; } else { return 1 + fun(&p[1]); }}void main(){ char s[] = "!\xch\019\\\0\b"; printf("%d\n", fun(s));}
转载地址:http://sypgz.baihongyu.com/