博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于函数strchr();
阅读量:5835 次
发布时间:2019-06-18

本文共 473 字,大约阅读时间需要 1 分钟。

原型:extern char *strchr(const char *s,char c);

 

  const char *strchr(const char* _Str,int _Val)

 

  char *strchr(char* _Str,int _Ch)

 

  头文件:#include <string.h>

 

  功能:查找串s中首次出现字符c的位置

 

  说明:返回首次出现c的位置的,如果s中不存在c则返回NULL。

 

  返回值:Returns the address of the first occurrence of the character in the string if successful, or NULL otherwise

例子:

#include<iostream>

#include<string.h>

using namespace std;

int main()

{  char a[10],b,*p,c;

 cin>>a;

 p=strchr(a,'b');    

printf("%s\n",p);  

return 0; }

 

转载地址:http://qvucx.baihongyu.com/

你可能感兴趣的文章
颤抖吧,Css3
查看>>
西门子_TDC_数据耦合小经验
查看>>
接口测试与postman
查看>>
【转载】Nginx + Tomcat 实现反向代理
查看>>
Mac下,如何把Github上的仓库删除掉
查看>>
9.18考试 第一题count题解
查看>>
mac zsh选择到行首的快捷键
查看>>
LINQ To XML的一些方法
查看>>
[LeetCode] Copy List with Random Pointer
查看>>
openstack部署之nova
查看>>
JS组件系列——表格组件神器:bootstrap table
查看>>
存储过程Oracle(一)
查看>>
log4j日志归档
查看>>
Java笔记01——IO流
查看>>
mysql遇见error,1049
查看>>
uva 10034(最小生成树)
查看>>
NYOJ311 完全背包
查看>>
shp格式数据发布服务:postGIS + postgresql + geoserver
查看>>
codevs——2822 爱在心中
查看>>
生成随机图片验证码
查看>>