Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,945 questions

51,887 answers

573 users

How to find the last occurrence of a character in a string using recursion with C

1 Answer

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

int find_last_occurrence(char str[], size_t size, char ch, int currentIndex) {
    if (currentIndex == size) {
        return -1;
    }

    int index = find_last_occurrence(str, size, ch, currentIndex + 1);

    if (index == -1 && str[currentIndex] == ch) {
        return currentIndex;
    }
    else {
        return index;
    }
}

int main()
{
    char str[] = "c c++ java c# rust python";
    size_t size = strlen(str);
    char ch = 'c';

    printf("index = %d", find_last_occurrence(str, size, ch, 0));

    return 0;
}




/*
run:

index = 11

*/

 



answered May 19, 2023 by avibootz

Related questions

1 answer 137 views
1 answer 114 views
2 answers 168 views
1 answer 127 views
1 answer 144 views
...