C语言哪个函数可以测定字符串的长度

 我来答
风若远去何人留
2015-12-30 · 知道合伙人互联网行家
风若远去何人留
知道合伙人互联网行家
采纳数:20412 获赞数:450131
专业C/C++软件开发

向TA提问 私信TA
展开全部
C语言中,计算字符串长度的函数为strlen。
1 形式:
int strlen(const char *s);
2 头文件:
string.h
3 功能:
计算字符串s的长度,并返回。
匿名用户
2018-02-12
展开全部
用sizeof函数,得到字节大小,然后看这个数组什么类型的,比如double类型,一个就占16位,就是2字节,就算出来了。
c++直接有length函数,可以直接给出长度,c没有
满意请采纳,如有疑问请追问
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
twltababa
推荐于2016-06-09 · TA获得超过250个赞
知道小有建树答主
回答量:383
采纳率:0%
帮助的人:143万
展开全部
Example
/* STRLEN.C */

#include <string.h>
#include <stdio.h>
#include <conio.h>
#include <dos.h>

void main( void )
{
char buffer[61] = "How long am I?";
int len;
len = strlen( buffer );
printf( "'%s' is %d characters long\n", buffer, len );
}

Output
'How long am I?' is 14 characters long

/////////////////////////////////////////////////////////

CString::GetLength
int GetLength( ) const;

Return Value

A count of the bytes in the string.

Remarks

Call this member function to get a count of the bytes in this CString object. The count does not include a null terminator.

For multibyte character sets (MBCS), GetLength counts each 8-bit character; that is, a lead and trail byte in one multibyte character are counted as two bytes.

Example

The following example demonstrates the use of CString::GetLength.

// example for CString::GetLength
CString s( "abcdef" );
ASSERT( s.GetLength() == 6 );
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
liujinsui
2006-09-27 · TA获得超过859个赞
知道小有建树答主
回答量:378
采纳率:0%
帮助的人:188万
展开全部
int strlen(const char *s) ,s为待求长度的字符串指针,头文件string.h
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
0501xql
2006-09-28
知道答主
回答量:14
采纳率:0%
帮助的人:2.4万
展开全部
头文件string.h
strlen(char str[]) ,str[]为待求长度的字符串
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式