c strchr函数实例讲解

简介: 原型: char *strchr(const char *s,char c); #include 查找字符串s中首次出现字符c的位置,返回首次出现c的位置的指针,如果s中不存在c则返回NULL。

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

#include<string.h>

查找字符串s中首次出现字符c的位置,返回首次出现c的位置的指针,如果s中不存在c则返回NULL

The strchr function finds the first occurrence of c instr, or it returns NULL ifc is not found. The null terminating character is included in the search.

实例讲解:

[root@bdkyr xuekun]# vim strchr_test.c

/*
 * create by xuekun
 * date 2015-7-31
 */

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

main()
{
    char *s="Golden Global View";
    char *p;
    p=strchr(s,'V');
    if(p)
        printf("%s\n",p);
    else
        printf("Not Found!\n");
    return 0;
}

[root@bdkyr xuekun]# gcc strchr_test.c -o strchr_test
[root@gateway xuekun]# ./strchr_test    
View

目录
相关文章
|
5月前
C实例1
C实例1。
27 3
|
5月前
C 练习实例8
C 练习实例8。
437 27
|
5月前
|
机器学习/深度学习 网络协议 Windows
C 练习实例18
C 练习实例18。
28 1
|
5月前
C 实例2
C 实例2。
28 3
|
5月前
|
Serverless 调度 数据安全/隐私保护
快速创建函数
本文介绍如何在函数计算控制台快速开发一个简单的Serverless Hello World函数
41 1
|
5月前
C练习实例11
C练习实例11。
28 1
|
5月前
C练习实例10
C练习实例10。
37 0
|
5月前
C练习实例9
C练习实例9
33 0
|
10月前
|
程序员 C++
C++程序设计函数部分(定义+实例)
C++程序设计函数部分(定义+实例)
49 0
|
存储 弹性计算 数据挖掘
U实例和主售型实例
U实例和主售型实例
173 0