Leo Linuxhnrainll.blog.chinaunix.net
hnrainll
全部博文(354)
2010年(300)
2009年(54)
大鬼不动
叶绍琛
路沐堇
HoariNes
快乐的猪
6551130
zjt_pond
K__奕__
cynthia
格伯纳
Bsolar
葫芦娃的
分类: C/C++
2010-07-18 04:55:56
//写一个函数,求一个字符串的长度,在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; }
上一篇:指针练习4
下一篇:深入理解SD卡基础原理以及内部结构的总结(转)
登录 注册