首页 > 代码库 > 编程题:函数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"));
}
本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413803
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。