Q:

C program to demonstrate the strpbrk() function

belongs to collection: C String Programs

0

C program to demonstrate the strpbrk() function

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C String Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C program to implement the strpbrk() user-defined ... >>
<< C program to implement own strstr() function...