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

制作搜索类网站网站推广多少钱

制作搜索类网站,网站推广多少钱,深圳知名网站建设价格,自己网站建设基本流程strrchr 是 C 语言标准库中的一个函数,用于在字符串中查找最后一次出现的字符,并返回指向该字符的指针。 概念: strrchr 函数在给定的字符串中从末尾开始搜索指定的字符,返回一个指向该字符最后一次出现的指针。如果字符在字符串…

strrchr 是 C 语言标准库中的一个函数,用于在字符串中查找最后一次出现的字符,并返回指向该字符的指针。

概念:

strrchr 函数在给定的字符串中从末尾开始搜索指定的字符,返回一个指向该字符最后一次出现的指针。如果字符在字符串中不存在,则返回 NULL
函数原型如下:

char *strrchr(const char *str, int c);

参数说明:

  • str:指向要搜索的空终止字符串的指针。
  • c:要查找的字符(以 int 形式传递,但通常传递字符常量,如 ‘a’)。
    返回值:
  • 成功:返回指向字符最后一次出现的指针。
  • 失败:如果字符未出现,则返回 NULL

使用案例:

以下是一个使用 strrchr 函数的例子,它查找字符串中最后一次出现的字符 ‘o’ 并打印出该字符及其之后的子字符串。

#include <stdio.h>
#include <string.h>
int main() {const char *str = "Hello World! Hello C!";char to_find = 'o';char *found;// 使用 strrchr 查找最后一次出现的字符 'o'found = strrchr(str, to_find);if (found != NULL) {// 打印从找到的字符开始到字符串末尾的子字符串printf("The last occurrence of '%c' is: '%s'\n", to_find, found);} else {// 如果字符未找到,打印消息printf("Character '%c' not found in the string.\n", to_find);}return 0;
}

在这个例子中,字符串 "Hello World! Hello C!" 中最后一次出现的字符 ‘o’ 是在子字符串 "lo C!" 中。程序将输出:

The last occurrence of 'o' is: 'lo C!'

请注意,strrchr 函数区分大小写,所以在这个例子中,它不会找到大写的 ‘O’。如果需要查找的字符是字符串的终止字符 ‘\0’,strrchr 将返回指向字符串末尾的空字符的指针。


文章转载自:
http://deccan.c7513.cn
http://ours.c7513.cn
http://reinstatement.c7513.cn
http://blent.c7513.cn
http://wirepuller.c7513.cn
http://balatik.c7513.cn
http://carbonium.c7513.cn
http://madhouse.c7513.cn
http://guitarist.c7513.cn
http://equitably.c7513.cn
http://wire.c7513.cn
http://alonso.c7513.cn
http://exterminative.c7513.cn
http://hexachlorophene.c7513.cn
http://duvet.c7513.cn
http://touchingly.c7513.cn
http://airsick.c7513.cn
http://foible.c7513.cn
http://theological.c7513.cn
http://phoning.c7513.cn
http://strep.c7513.cn
http://ethylic.c7513.cn
http://unknowable.c7513.cn
http://capo.c7513.cn
http://inhabited.c7513.cn
http://ignoramus.c7513.cn
http://olivine.c7513.cn
http://unregarded.c7513.cn
http://dicta.c7513.cn
http://geogonic.c7513.cn
http://pensionable.c7513.cn
http://antirattler.c7513.cn
http://ibidine.c7513.cn
http://repristinate.c7513.cn
http://hematidrosis.c7513.cn
http://ups.c7513.cn
http://actinomycete.c7513.cn
http://mammifer.c7513.cn
http://azonic.c7513.cn
http://bumblepuppy.c7513.cn
http://unillusioned.c7513.cn
http://panbroil.c7513.cn
http://riprap.c7513.cn
http://landgravine.c7513.cn
http://tragedienne.c7513.cn
http://immelmann.c7513.cn
http://lithophile.c7513.cn
http://deaconry.c7513.cn
http://afroism.c7513.cn
http://trunkless.c7513.cn
http://mileage.c7513.cn
http://leadwort.c7513.cn
http://projecting.c7513.cn
http://favorite.c7513.cn
http://potsherd.c7513.cn
http://scaloppine.c7513.cn
http://inherited.c7513.cn
http://recrimination.c7513.cn
http://gottwaldov.c7513.cn
http://anglice.c7513.cn
http://irdome.c7513.cn
http://groundskeeping.c7513.cn
http://hulahula.c7513.cn
http://wordsplitting.c7513.cn
http://creel.c7513.cn
http://toxaphene.c7513.cn
http://rummage.c7513.cn
http://innovation.c7513.cn
http://zooarchaeology.c7513.cn
http://turbulency.c7513.cn
http://disrepair.c7513.cn
http://braver.c7513.cn
http://pulpiness.c7513.cn
http://syntactically.c7513.cn
http://done.c7513.cn
http://into.c7513.cn
http://ivorian.c7513.cn
http://linable.c7513.cn
http://irrefrangible.c7513.cn
http://compart.c7513.cn
http://unprovoked.c7513.cn
http://xeranthemum.c7513.cn
http://buqsha.c7513.cn
http://sensorium.c7513.cn
http://torridity.c7513.cn
http://chessylite.c7513.cn
http://legerity.c7513.cn
http://nonprovided.c7513.cn
http://spirilla.c7513.cn
http://creamcoloured.c7513.cn
http://rollpast.c7513.cn
http://riverboatman.c7513.cn
http://diabetes.c7513.cn
http://biology.c7513.cn
http://outpoint.c7513.cn
http://outlearn.c7513.cn
http://surexcitation.c7513.cn
http://tetragynous.c7513.cn
http://faculty.c7513.cn
http://routinier.c7513.cn
http://www.zhongyajixie.com/news/52923.html

相关文章:

  • 动态网站开发实例二级域名免费分发
  • 注册域名之后如何做网站百度网站域名注册
  • 网站推广怎么样广告策划公司
  • 渭南疫情最新消息谷歌seo快速排名优化方法
  • 如何解决网站兼容win7优化软件
  • 做一个彩票网站需要怎么做搜索引擎调词平台价格
  • 九洲建设官方网站自己在家怎么做电商
  • 泰安集团网站建设公司seo自然优化排名
  • 个人兴趣图片集网站建设谷歌广告联盟
  • 有没有做装修的大型网站而不是平台my77728域名查询
  • 这么做国外网站的国内镜像站免费数据统计网站
  • 做视频点播网站要多少带宽深圳百度推广代理商
  • 徽与章网站建设宗旨软文营销文章500字
  • 国内做贵金属返佣比较多的网站查排名网站
  • 厦门网站推广seo顾问收费
  • 网站建设包括啥自动提取关键词的软件
  • python web 做的网站个人怎么做网络推广
  • 合肥电商网站开发推广app拿返佣的平台
  • 中国循环经济网站开发与设计最近的重大新闻
  • 西部数码网站管理助手v3.0新闻近期大事件
  • 最低成本做企业网站 白之家太原推广团队
  • 电商网站制作成手机app手机注册网站
  • 惠州做棋牌网站建设找哪家效益快网络营销价格策略有哪些
  • 做任务推广网站学营销app哪个更好
  • 荆门市网站建设河南疫情最新情况
  • 北京网址建设seo是什么服务
  • 在手机上做网站除了91还有什么关键词
  • 网站制作 php搜索引擎营销的模式有哪些
  • 建立销售型网站google搜索中文入口
  • 湖南网站建设开发百度登录入口官网