首页
编程
java
php
前端
首页
编程
java
php
前端
为什么这个调试出来是奇奇怪怪的值?
字符串长度函数写的不对
int mylen(char*p){
int n = 0;
while(*p){
n++;
p++;
}
return n;
}
点击展开全文