字符串的库函数

1. char *strchr(const char *s,int c ) 

注意返回值是一个指针,那么具体位置需要用返回值减去字符串S的首地址,找不到的时候返回NULL,测试如下:


#include <cstdio>
#include <cstring>
int main()
{
	char a[] = "lyoygqwanltl";
	char c = 'y';
	char * tmp = strchr(a,c);
	if(tmp)
		printf("position is :%d\n",tmp - a);
	else
		printf("can not find\n");
	return  0;
}



你可能感兴趣的:(字符串的库函数)