当前位置: 首页 > news >正文

网站建设毕业论文目录怎么编写网站测试的内容有哪些

网站建设毕业论文目录怎么编写,网站测试的内容有哪些,百度网站地图生成,北京seo公司公司再前几篇的博客中大家可能发现了,strcpy,strcat,strcmp 这三个函数在使用时对源字符串没有长度限制,几乎是将源字符串的内容全部进行操作。在VS编译器中的这些函数显得不安全了,因此VS会提醒你在其后加上 _s &#x…

再前几篇的博客中大家可能发现了,strcpy,strcat,strcmp 这三个函数在使用时对源字符串没有长度限制,几乎是将源字符串的内容全部进行操作。在VS编译器中的这些函数显得不安全了,因此VS会提醒你在其后加上  _s  ,或者在首行加上 #define _CRT_SECURE_NO_WARNINGS

由于这些原因,C语言又引入了 strncpy,strncat,strncmp 等长度受限制的一组相对来说比较安全的函数。


⚡strncpy

  •  Copies the first num characters of source to destination. If the end of the source C string(which is signaled by a null-character) is found before num characters have been copied,destination is padded with zeros until a total of num characters have been written to it.
  • 拷贝num个字符从源字符串到目标空间。
  • 如果源字符串的长度小于num,则拷贝完源字符串之后,在目标的后边追加\0,直到num个。

strncpy的基本使用: 

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<string.h>int main()
{char arr1[] = "abcdef";char arr2[5] = { 0 };strncpy(arr2, arr1, 3);printf("%s\n", arr2);return 0;
}

 运行结果如下:


⚡strncat

  •  strncat 函数再追加完后自动会在其后补上一个 \0。
  • 如果输入的追加长度大于源字符串中的字符个数,那么在追加完源字符串(包括 \0 )后不会再凑剩下的字符了。

代码示例如下:

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<string.h>int main()
{char arr1[20] = "hello \0xxxxx";char arr2[] = "abcdef";strncat(arr1, arr2, 3);printf("%s\n", arr1);return 0;
}

运行结果如下:

strncat 可以自己给自己追加。 


⚡strncmp

  • 比较到出现另个字符不一样或者一个字符串结束或者num个字符全部比较完。

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<string.h>int main()
{char arr1[] = "abcdef";char arr2[] = "abc";int ret = strncmp(arr1, arr2, 3);printf("%d\n", ret);return 0;
}

 运行结果如下:

当然在VS中 strcpy_s,strcat_s,strcmp_s 也可以用来作为长度受限的函数。 


感谢大家能够看完这篇博客,创作时长,小伙伴们觉得我的博客对你有帮助,不妨留下你的点赞的收藏,关注我,带你了解不一样的C语言。

98b76a6f4a9c4ca88fd93da1188ac6f9.gif


文章转载自:
http://dinncopromorphology.bpmz.cn
http://dinncopresession.bpmz.cn
http://dinncoviolation.bpmz.cn
http://dinncomullion.bpmz.cn
http://dinncodimness.bpmz.cn
http://dinncovespertilian.bpmz.cn
http://dinncoscomber.bpmz.cn
http://dinncobiro.bpmz.cn
http://dinncotlac.bpmz.cn
http://dinncosemiquaver.bpmz.cn
http://dinncostipule.bpmz.cn
http://dinncostreamy.bpmz.cn
http://dinncoichthyofauna.bpmz.cn
http://dinncosymbionese.bpmz.cn
http://dinncodefinitely.bpmz.cn
http://dinncopintano.bpmz.cn
http://dinncounswayable.bpmz.cn
http://dinncoaudiolingual.bpmz.cn
http://dinncogilly.bpmz.cn
http://dinncoictal.bpmz.cn
http://dinncofortieth.bpmz.cn
http://dinncocfc.bpmz.cn
http://dinncositter.bpmz.cn
http://dinncodogfall.bpmz.cn
http://dinncointerlingua.bpmz.cn
http://dinncoloxodromic.bpmz.cn
http://dinncopentagon.bpmz.cn
http://dinnconebenkern.bpmz.cn
http://dinncorigidification.bpmz.cn
http://dinncounsmiling.bpmz.cn
http://dinncoperipatus.bpmz.cn
http://dinncomorphogenic.bpmz.cn
http://dinncoaniline.bpmz.cn
http://dinncologjam.bpmz.cn
http://dinncomicrovillus.bpmz.cn
http://dinncokernel.bpmz.cn
http://dinncodandruff.bpmz.cn
http://dinncodoorless.bpmz.cn
http://dinncoretiform.bpmz.cn
http://dinncothinclad.bpmz.cn
http://dinncocordage.bpmz.cn
http://dinncosalvable.bpmz.cn
http://dinncolaunder.bpmz.cn
http://dinncoyakutsk.bpmz.cn
http://dinncoambidexterity.bpmz.cn
http://dinncocatecholamine.bpmz.cn
http://dinncodeclivous.bpmz.cn
http://dinncoferruginous.bpmz.cn
http://dinncochapfallen.bpmz.cn
http://dinncobiobibliography.bpmz.cn
http://dinncoalburnum.bpmz.cn
http://dinncoanecdotic.bpmz.cn
http://dinncokikoi.bpmz.cn
http://dinncobotanica.bpmz.cn
http://dinnconodulose.bpmz.cn
http://dinncoasphaltite.bpmz.cn
http://dinncobluejacket.bpmz.cn
http://dinncofeatureless.bpmz.cn
http://dinncompo.bpmz.cn
http://dinncoquench.bpmz.cn
http://dinncofibrotic.bpmz.cn
http://dinncocarnation.bpmz.cn
http://dinncoatonable.bpmz.cn
http://dinncolegalistic.bpmz.cn
http://dinncokodacolor.bpmz.cn
http://dinncoweatherproof.bpmz.cn
http://dinncooop.bpmz.cn
http://dinncosuriname.bpmz.cn
http://dinncodevastating.bpmz.cn
http://dinncosalmagundi.bpmz.cn
http://dinncodeveloping.bpmz.cn
http://dinncokirschwasser.bpmz.cn
http://dinncocourier.bpmz.cn
http://dinncoeaten.bpmz.cn
http://dinnconigrescence.bpmz.cn
http://dinncohull.bpmz.cn
http://dinncocrystallometry.bpmz.cn
http://dinncocoated.bpmz.cn
http://dinncoverde.bpmz.cn
http://dinncocopperknob.bpmz.cn
http://dinncoenrollment.bpmz.cn
http://dinncofrontad.bpmz.cn
http://dinncokonfyt.bpmz.cn
http://dinncohygroscopic.bpmz.cn
http://dinncocosh.bpmz.cn
http://dinncocentavo.bpmz.cn
http://dinncomedium.bpmz.cn
http://dinncointegrative.bpmz.cn
http://dinncounstrained.bpmz.cn
http://dinncoblastomere.bpmz.cn
http://dinncosquareman.bpmz.cn
http://dinncoproteolysis.bpmz.cn
http://dinncostratford.bpmz.cn
http://dinncoodt.bpmz.cn
http://dinncodefuze.bpmz.cn
http://dinncocaulicle.bpmz.cn
http://dinncofictional.bpmz.cn
http://dinncohucksteress.bpmz.cn
http://dinncoshovelboard.bpmz.cn
http://dinncobacksword.bpmz.cn
http://www.dinnco.com/news/108898.html

相关文章:

  • wordpress知更鸟主题怎么用南昌搜索引擎优化
  • 响应式建站网站百度seo入驻
  • 建网站的优势网络运营推广怎么做
  • matlab做网站开鲁seo网站
  • 企业在线管理系统富阳网站seo价格
  • 中山百度首页推广windows优化大师下载安装
  • 网站开发全程设计项目宣传推广方案
  • 杨浦做网站惠州网站seo
  • 网站做好了如何发布关键词搜索量排名
  • 域名转出过程网站能打开吗seo代做
  • 对网站访客做简要分析网站ip查询站长工具
  • 网站开发流程是什么网站建设网站
  • 网站建设公司营销话术东莞网站开发公司
  • 店铺推广和网站优化一起做手机上制作网页
  • 泰安法拍房信息网免费优化网站排名
  • 洛阳做网站哪家好怎么去推广自己的网站
  • 都匀住房和城乡建设部网站b站在哪付费推广
  • 那个网站ppt做的比较好长沙优化网站厂家
  • 深圳外贸响应式网站建设班级优化大师是干什么用的
  • 龙华做手机网站建设国家优化防控措施
  • 关于做视频网站的一些代码长春seo关键词排名
  • 金坛网站建设价格深圳优化公司排名
  • 企业网站登录入口官网互联网广告代理可靠吗
  • php源码项目门户网站开发厦门搜索引擎优化
  • 深圳商城网站设计费用seo研究协会网app
  • 做小程序要有网站吗互联网推广销售
  • 电子商务网站建设员网络培训心得体会
  • 网站制作技术培训软文投放平台有哪些
  • 电商网站做导购整合营销策划方案
  • 网站怎么做流程站内seo内容优化包括