首页 > 其他 > 详细

练习:常用字符串

时间:2019-01-10 14:18:46      阅读:146      评论:0      收藏:0      [点我收藏+]

/*#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;
}

技术分享图片

 

练习:常用字符串

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

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