码迷,mamicode.com
首页 > 其他好文 > 详细

strcat strcpy strcmp strlwr strlen的简单用法

时间:2015-12-16 17:30:15      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:strcat strcpy

 


#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的简单用法

标签:strcat strcpy

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!