首页 > 其他 > 详细

strcat strcpy strcmp strlwr strlen的简单用法

时间:2015-12-16 17:28:51      阅读:270      评论:0      收藏:0      [点我收藏+]

 


#include<stdio.h>
int main()
{
 char str1[20] = { "hello" };
 char str2[] = { "bit" };
 printf("%s", strcat(str1, str2));
 system("pause");
 return 0;
}

 


#include<stdio.h>
int main()
{
 char str1[20];
 char str2[] = { "bit" };
 printf("%s", strcpy(str1, str2));
 system("pause");
 return 0;
}

 


#include<stdio.h>
int main()
{
 char str1[10] = { "hello" };
 char str2[10] = { "bit" };
 char max[10];
 if (strcmp(str1, str2) > 0);
 printf("%s",str1 );
 if (strcmp(str1, str2) < 0);
 strcpy(str2, str1);
 printf("%s",str2 );
 system("pause");
 return 0;
}

 

 

#include<stdio.h>
int main()
{
 char str[] = { "HELLO" };
 printf("%s\n", strlwr(str));
 printf("%d", strlen(str));
 system("pause");
 return 0;
}

 

strcat strcpy strcmp strlwr strlen的简单用法

原文:http://10942013.blog.51cto.com/10932013/1725226

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!