Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3492106
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T11:43:06+00:00 2026-05-18T11:43:06+00:00

For a homework assignment, I need to implement a function which takes a char

  • 0

For a homework assignment, I need to implement a function which takes a char *s and a char c and return the index of c if found, and -1 otherwise.

Here’s my first try:

int IndexOf(const char *s, char c) {
    for (int i = 0; *s != '\0'; ++i, ++s) {
        if (*s == c) {
            return i;
        }
    }

    return -1;
}

Is that an okay implementation, or are there things to improve?

EDIT Sry, didn’t mention that I only should use pointer-arithmetic/dereferencing, not something like s[i]. Besides, no use of the Standard Library is allowed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T11:43:06+00:00Added an answer on May 18, 2026 at 11:43 am

    Yours is perfectly fine, as far as it goes. You should also write a simple test program that tests for the first char, last char, and a missing char.

    Piling on to the ‘other ways to do it’ group, here is one with no break, a single return, and showing off pointer arithmetic. But, beware: if I were grading your homework, I would grade yours higher than mine. Yours is clear and maintainable, mine needlessly uses ?: and pointer subtraction.

    #include <stdio.h>
    
    int IndexOf(const char *s, const char c)
    {
        const char * const p = s;
        while(*s && *s != c) s++;
        return (*s) ? s-p : -1;
    }
    
    #ifdef TEST
    int main()
    {
        printf("hello, h: %d\n", IndexOf("hello", 'h'));
        printf("hello, g: %d\n", IndexOf("hello", 'g'));
        printf("hello, o: %d\n", IndexOf("hello", 'o'));
        printf("hello, 0: %d\n", IndexOf("hello", 0));
    }
    #endif
    

    The output of this program is:

    hello, h: 0
    hello, g: -1
    hello, o: 4
    hello, 0: -1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm doing a basic homework assignment which looks like this: While input <> -1
I'm working on a homework assignment where we are asked to implement an evaluation
I need to implement a few commands of Linux shell for my homework -
I have a homework assignment where I need to take input from a file
I need little help on a homework assignment. I have to create a 10
I need to use segregated free lists for a homework assignment and I was
I have a homework assignment to write a multi-threaded sudoku solver, which finds all
I finished my short file for a homework assignment which uses IO.popen(command).readlines to grab
For a homework assignment, I need the logic to find a series of numbers
For a homework assignment I was given a Card class that has enumerated types

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.