实现库函数strlen和strcpy strlen:用一条语句实现库函数strlen 1 #include <stdio.h> 2 #include <assert.h> 3 4 size_t strlen(const char* s) 5 { 6 return ( assert(s), (*s ? (strlen(s+1) + 1) : 0) ); 7 ... Other 2024-10-20 39 点赞 0 评论 59 浏览