首页 > 代码库 > 编程题:函数strlen()的使用

编程题:函数strlen()的使用

编程题:函数strlen()的使用

#include<stdio.h>

#include<string.h>

void main()

{ int i;

  char str1[20],str2[20];

  gets(str1);gets(str2);

  for(i=0;str2[i]!=‘\0‘;i++);

  printf("%s:%d\n",str1,strlen(str1));

      printf("%s:%d\n",str2,i);

  printf("%s:%d\n","I like C",strlen("I like C"));

}

编程题:函数strlen()的使用 - 文豪 - WELCOME MY BLOG.


本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413803