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

练习:常用字符串

时间:2019-01-10 14:25:29      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:return   gets   bubuko   strcat   com   har   cat   lov   参数   

/*#include <string.h>

1、strlen 计算字符串长度;

2、strcop 拷贝;

3、strncop 拷贝指定数量的字符;

4、shrcat 连接字符串;*/

 

 

#include <stdio.h>
#include <string.h>
int main(void)
{
 char a[64];
 int k;
 printf("请输入一个字符串:");
 gets(a);
 k = strlen(a);
 printf("字符串长度是:%d\n",k);
 return 0;
}

技术分享图片

 

#include <stdio.h>
#include <string.h>
int main(void)
{
 char a[64] = "love";
 char b[64] = "thinks";
 //strcop的第一个参数,是目标字符串;
 //strcop的第二个参数,是源字符串;
 strcpy(a,b);
 printf("输出结果:%s\n",a);
 
 return 0;
}

技术分享图片

#include <stdio.h>
#include <string.h>
int main(void)
{
 char a[64] = "love";
 char b[64] = "123456";
 //strcop的第一个参数,是目标字符串;
 //strcop的第二个参数,是源字符串;
 strncpy(a,b,3); //strncpy函数是拷贝指定数量的字符串;
 printf("输出结果:%s\n",a);
 
 return 0;
}

技术分享图片

 

#include <stdio.h>
#include <string.h>
int main(void)
{
 char a[64];
 char b[64];
 printf("输入一个字符:");
 gets(a);
 printf("输入一个字符:");
 gets(b);
 strcat(a,b); //strcat是连接字符串
 printf("输出结果:%s\n",a);
 return 0;
}

技术分享图片

 

练习:常用字符串

标签:return   gets   bubuko   strcat   com   har   cat   lov   参数   

原文地址:https://www.cnblogs.com/fzhiyaoy/p/10249656.html

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