2023年c语言中函数strlen实用

网友 分享 时间:

【导读预览】此篇优秀范文“2023年c语言中函数strlen实用”由阿拉题库网友为您整理分享,以供您参考学习之用,希望此篇资料对您有所帮助,喜欢就复制下载支持吧!

c语言中函数strlen篇1

c库提供了多个字符串处理函数,ansi c把这些函数的原型放在头文件中。其中最常用的有strlen()、strcat()、strcmp()、strncmp()、strcpy()和strncpy()。另外还有sprintf(),其原型在头文件中。下面一起来学习一下吧!

strlen()函数用于统计字符串的长度,它会统计字符包括空格和标点符号,不统计空字符。注意与sizeof运算符区分,sizeof以字节为单位返回运算对象(变量名、类型名等)的大小。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

/* test_ -- try the string-shrinking function */

#include <>

#include <>

/* contains string function prototypes */

void

fit(

char

*, unsigned

int

);

int

main(

void

)

{

char

mesg[] =

"things should be as simple as possible,"

" but not simpler."

;

puts(mesg);

fit(mesg,

38

);

puts(mesg);

puts(

"let's look at some more of the string."

);

puts(mesg +

48 1549101
");