Q:

C program to implement the strpbrk() user-defined function

belongs to collection: C String Programs

0

C program to implement the strpbrk() user-defined 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 implement strpbrk() user-defined function to 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 implement the strpbrk() function

#include <stdio.h>

char* strpbrk(char* str1, char* str2)
{
    int i = 0;
    int j = 0;

    int pos = 0;
    int flg = 0;

    while (*(str1 + i))
        i++;

    pos = i;
    i = 0;
    while (*(str2 + i)) {
        j = 0;
        while (*(str1 + j)) {
            if (str2[i] == str1[j]) {
                if (j <= pos) {
                    pos = j;
                    flg = 1;
                }
            }
            j++;
        }
        i++;
    }

    if (flg == 1)
        return &str1[pos];

    return NULL;
}

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 implemented strpbrk() user-defined 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 sort the words of the string... >>
<< C program to demonstrate the strpbrk() function...