C program to demonstrate the strpbrk() function

Here, we are going to demonstrate the strpbrk() function in C programming language.
Submitted by Nidhi, on July 23, 2021

Problem Solution:

The strpbrk() function accepts two string parameters. And, search any character of the second string within the first string passed as an argument in the function and returns the character pointer to the calling function.

In this program, we will search the first vowel within the string using the strpbrk() function.

Program:

The source code to demonstrate the strpbrk() function is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.

// C program to demonstrate the strpbrk() function

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

int main()
{
    char* ptr;
    char str[] = "Learn programming on www.includehelp.com";
    char vowels[] = "aeiou";

    ptr = strpbrk(str, vowels);
    if (ptr != NULL)
        printf("First vowel is: '%c' in the string\n", ptr[0]);
    else
        printf("No any vowel found within the string.\n");

    return 0;
}

Output:

First vowel is: 'e' in the string

Explanation:

In the main() function, we used the strpbrk() function to search any vowel within the string and return the character pointer to the calling function. Then we printed the first vowel on the console screen.

C String Programs »



Related Programs




Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.