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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T19:37:40+00:00 2026-05-13T19:37:40+00:00

I need to implement qsort in C and sort in reverse lexicographical order. I’m

  • 0

I need to implement qsort in C and sort in reverse lexicographical order. I’m confused on how to create and call the comparison function. This is what I have so far..

qsort (strArr, numLines, sizeof(char*) , sort);

int sort(const void * str1, const void * str2) {
 return (-1) * strcasecmp((char*) str1, (char*) str2);
};

Eclipse is telling me “‘sort’ undeclared (first use in this function)” on the qsort line, but I fear that’s not my only problem. Any advice?

Thanks,
Hristo

Revision… this is what my array looks like:

char **strArr = malloc(numLines * sizeof(char*));
fgets(output, 256, sourceFile);
strArr[i] = malloc(((int) strlen(output) + 1) * sizeof(char));
strcpy(strArr[i],output);
  • 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-13T19:37:41+00:00Added an answer on May 13, 2026 at 7:37 pm

    you would need to declare sort before using it:

    int sort(const void * str1, const void * str2);
    

    then the comparison might be:

    return strcasecmp(*(char * const *)str2, *(char * const *)str1);
    

    As @Chris Jester-Young points out you can swap the args to reverse the comparison.

    the pointers have to be dereferenced…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to implement a 4-to-1 function in Veriog. The input is 4 bits,
I need to implement the classic Factory Method pattern in ASP.NET to create server
I need to implement a web application hosted on sharepoint. This is a client
Hi I need implement context help inside my .NET application. I have .chm file
i have big decision tree with many Yes/No questions. i need implement some code
I need to implement a scrolling window in order to accommodate all the items
I need to implement 256 bit AES encryption, but all the examples I have
I need to implement upgrade database I have in the codebase code the works
I need to implement a hash table and hash function using JavaScript. The goal
I need to implement a step function (i.e. piecewise constant). There are a few

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.