文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>指针练习5

指针练习5

时间:2010-07-18  来源:hnrainll

//写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。
#include <stdio.h>
#include <stdlib.h>

int length(char *p)
{
    int n = 0;
    while(*p != '\0') //遍历数组里的值,和'\0'比较
    {
        n++;
        p++;
    }

    return n;
}
int main()
{
    int len;
    char str[80];

    printf("please input a string: \n");
    scanf("%s",str); //这里要为%s,如果为%c就不会有‘\0’了
    len = length(str);

    printf("the string has %d characters.\n",len);
//    system("pause");
    return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载