int strlenth(const char *string){
    int length = 0;
    while(*(string++)){
        length++;
    }
    return length;
}