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 6750559
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:49:19+00:00 2026-05-26T12:49:19+00:00

I need to get number of character in array. const char myarray[5] = {‘0’,

  • 0

I need to get number of character in array.

const char myarray[5] = {'0', 'a', 'e', 'f', 'c'}; // Create array of char
int number=0; // Create variable
number = getposition(myarray, 'f'); // Now number equals to 3
number = getposition(myarray, 'z'); // -1, because array doesn't have this char

My task is easy because array don’t have repeating characters (for example, it can’t be smth like this: {‘a’, ‘1’, ‘f’, ‘a’}). How can I do it?

  • 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-26T12:49:20+00:00Added an answer on May 26, 2026 at 12:49 pm

    A little bit more C++:

    #include <algorithm>
    
    int getposition(const char *array, size_t size, char c)
    {
         const char* end = array + size;
         const char* match = std::find(array, end, c);
         return (end == match)? -1 : (match-array);
    }
    

    A lot more C++:

    template <typename T, size_t N>
    int getposition(const T (&array)[N], const T c)
    {
         const T* match = std::find(array, array+N, c);
         return (array+N==match)? -1 : std::distance(array, match);
    }
    

    Bonus C++11/C++11 update

    #include <algorithm>
    #include <iterator>
    
    template <typename Range, typename T>
    size_t index_of(Range const& range, T const& c) {
        using std::begin;
        using std::end;
    
        auto b = begin(range), e = end(range);
        auto match = std::find(b, e, c);
    
        return (e==match)? -1 : std::distance(b, match);
    }
    

    Bonus C++17 update

    Here, the original question gets direct support in std::string_view:

    Live On Coliru

    #include <string_view>
    using namespace std::string_view_literals;
    
    int main() {
        return "hello"sv.find('e');
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i need to get number of order highlighted element (by javascript, jquery): <li>A</li> <li>B</li>
I need to get the number of days contained within a couple of dates
AssemblyName.GetAssemblyName().Version.ToString() will give the version number ,,but i need to get version number from
I need to get a count of the number of files in a directory.
I need to get the square root of a 210 digit number accurately, I
I need to get the system locale to do a number of things, ultimately
C++ So i need a way to get say the number 7 from the
I have a character array that contains a phone number of the form: (xxx)xxx-xxxx
I need to get the lesser n numbers of a list in Python. I
I need to get two JPanels into one JApplet. paneel = new RekenmachinePaneel(); nummer

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.