70.写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度

char型指针,当没有带号时,指的是内存的某一个位置,带号时,指的是这个位置上存储的内容。
当它指向一个字符串时,指向的是字符串的第一位,当p++的时候,就是指针往后挪一位的意思

#include 
#include "time.h"
#include 


int length(char*s){
    int n=0;
    while (*s!='\0'){

        n++;
        s++;
    }
    return n;

}
int main()
{
   int len;
   char *str[20];
   scanf("%s",&str);
   len=length(str);
    printf("%d",len);



}

70.写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度_第1张图片
70.写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度_第2张图片

你可能感兴趣的:(算法,c语言,排序算法,c++)