Posted in 面试题 onNovember 18, 2015
解: main()
{ int len ;
char *str[20];
printf(“Tnput string:”);
scanf(“%s”,str);
len-length(str);
printf(“The length of string is %d.”,len);
}
Length(char *p)
{int n;
n=0;
while(*p!=’\0’)
{n++;
P++;
}
Return(n);
}
{ int len ;
char *str[20];
printf(“Tnput string:”);
scanf(“%s”,str);
len-length(str);
printf(“The length of string is %d.”,len);
}
Length(char *p)
{int n;
n=0;
while(*p!=’\0’)
{n++;
P++;
}
Return(n);
}
写一个函数,求一个字符串的长度。在main函数中输入字符串,并输出其长度
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@