1. 程式人生 > 其它 >利用函式實現strlen函式的功能。

利用函式實現strlen函式的功能。

技術標籤:# 刷題函式strlen函式

利用函式實現strlen函式的功能。

#include <stdio.h>
#include <string.h>
size_t mstrlen(const char *s)
{
    if(s == NULL){
        return 0;
    }
    
    int len = 0;
    while(*s++ != '\0'){
        len++;
    }
    return len;
}

int main(int argc, const char *argv[])
{
    char
ch1[] = "Hello word"; printf("strlen:%d\n",strlen(ch1)); printf("mstrlen:%d\n",mstrlen(ch1)); return 0; }