Loading

摘要: #include <stdio.h> unsigned int Mystrlen(const char *p){ unsigned int len; len=0; for(;*p!='\0';p++){ //循环查找,直到找到以\0结尾为止(C语言以\0作为字符串的结束符) len++; } ret 阅读全文
posted @ 2021-05-16 00:29 mi2ac1e 阅读(322) 评论(0) 推荐(0)