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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:38:04+00:00 2026-05-29T05:38:04+00:00

I have this structure: typedef struct { char *str; … } nameType; I create

  • 0

I have this structure:

typedef struct {
   char *str;
   ...
} nameType;

I create a new pointer instance, initialize the str pointer inside it (all of these have been done correctly, I can do printfs to check it).

nameType *names;
names = malloc( 10 * sizeof( nameType ) );
for ( i = 0; i < 10; i++ ) {
    ...
    names[ i ].str = malloc( ... );
    ...
}

And then I want to sort it using bubblesort, but I’m having trouble doing it. Noted that I managed to do it using qsort, but after some days of debugging, testing, googling etc, I still can’t find it. Sorting code:

for ( i = 0; i < n - 1; i++ ) {
    for ( j = n - 1; j > i; j-- ) {
        if ( strcmp( names[ i ].str, names[ j ].str ) > 0 ) {
            nameType *tmp;
            tmp = names[ i ];
            names[ i ] = names[ j ];
            names[ j ] = tmp;
        }
    }
}

(The above code is just an example of what I’m doing with sorting — I’ve tried so many variations that my mind is going to blow.)

  • 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-29T05:38:05+00:00Added an answer on May 29, 2026 at 5:38 am

    names is used as an array of nameType, but

    nameType *tmp;
    tmp = names[ i ];
    

    you assign names[i] to a pointer to nameType. Make it nameType tmp;.

    And of course make sure you don’t overstep the allocated space for names, as @another.anon.coward said, j should probably start from n-1.

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

Sidebar

Related Questions

Let's say I have a first structure like this: typedef struct { int ivalue;
I have a structure to represent strings in memory looking like this: typedef struct
I have this structure typedef struct fpinfo { unsigned long chunk_offset; unsigned long chunk_length;
I have a C structure that looks like this typedef struct event_queue{ Event* event;
I have this structure which I want to write to a file: typedef struct
I have the following structure typedef struct DeviceInfo { char[30] name; char[30] serial Number;
I have a structure such as typedef struct FT_Bitmap_ { int rows; int width;
I have the following struct in C++: #define MAXCHARS 15 typedef struct { char
So I have a structure of unknown size as follows: typedef struct a{ int
In the header file of the dll I have the following structure typedef struct

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.