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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T13:49:10+00:00 2026-06-05T13:49:10+00:00

Can any one explain what algorithm used in strcmp to compare two string in

  • 0

Can any one explain what algorithm used in strcmp to compare two string in C programming ?

I didnt understand the return value from this, It uses any algorithm like ‘Levenstien algorithm‘ to find out distance between two string…

  • 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-06-05T13:49:11+00:00Added an answer on June 5, 2026 at 1:49 pm

    The GNU implementation of the standard C library, glibc, is open source and you can just read strcmp.c if you are curious. There is not much to it. Here it is:

    /* Compare S1 and S2, returning less than, equal to or
       greater than zero if S1 is lexicographically less than,
       equal to or greater than S2.  */
    int strcmp (const char *p1, const char *p2)
    {
      register const unsigned char *s1 = (const unsigned char *) p1;
      register const unsigned char *s2 = (const unsigned char *) p2;
      unsigned reg_char c1, c2;
    
      do
        {
          c1 = (unsigned char) *s1++;
          c2 = (unsigned char) *s2++;
          if (c1 == '\0')
            return c1 - c2;
        }
      while (c1 == c2);
    
      return c1 - c2;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can any one please explain me. What is the algorithm of garbage collector? How
Can any one explain why the time complexity for generating a binary heap from
Can any one explain how Java SimpleTimeZone rules are interpreted. For example a rule
Can any one explain the difference between Scroll View and List View? When to
Can any one explain the difference between and usage of OR operator ( ||
what is main different between Restful and Soap? can any one explain restful with
I tried to analyse the FieldCacheImpl in Solr 3.5.0, can any one explain me
can any one precisely explain the difference between ASP.NET MVC1 vs MVC2.. and if
can any one explain how generally address taken from user stores in database...does that
can any one explain While we are importing a package we can use its

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.