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

  • Home
  • SEARCH
  • 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 9303435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T23:29:04+00:00 2026-06-18T23:29:04+00:00

Assume we have two different struct that have mostly common fields but one or

  • 0

Assume we have two different struct that have mostly common fields but one or two different fields or less fields. For example:

typedef struct HobbyNodetag {
    char *name; // hobby name
    struct HobbyNodetag* link; // link to next HobbyNode
    int count; // number of times this hobby was mentioned by user
    // more fields... 
    // but identical type/variable name with MyHobbyList
} HobbyNode; // database of entire hobby node; singly linked list

typedef struct MyHobbyTag{
    char *name; // hobby name
    struct MyHobbyTag* link; // linked to next MyHobbyNode
    // more fields... 
    // but identical type/variable name with EntireHobbyList
} MyHobbyNode; // single person's hobby node; singly linked list

Do we have more efficient/elegant coding practice to use above two structs? Wouldn’t this be a waste of having two different structs as they share majority of the fields?

UPDATE

My earlier question was misleading. The above example is the node and singly linked (by link).

  • 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-18T23:29:06+00:00Added an answer on June 18, 2026 at 11:29 pm

    You can move all the extra fields (which are present in the second struct but not in the first one) to the end of the struct type definition, then use the smaller struct as the “base” of the bigger one:

    struct BaseFoo {
        int count;
        char name[128];
        float value;
    };
    
    struct ExtendedFoo {
        struct BaseFoo base;
        struct ExtendedFoo *next;
    };
    

    What is nice about this solution is that you can have “polymorphism”: since the C standard guarantees that there is no padding before the first struct member in memory, this will work just fine:

    void print_name(struct BaseFoo *foo)
    {
        printf("Count: %d\n", foo->count);
        printf("Name: %s\n", foo->name);
    }
    
    struct ExtendedFoo foo = { /* initialize it */ };
    print_name((BaseFoo *)&foo);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have two different datasets in CouchDB, one is infrequently updated (mostly updates
Assume you have two images. In one you have a small icon (like less
Lets assume I have two hashes. One of them contains a set of data
Let's assume I have two gmdistibution models that i obtained using modeldata1=gmdistribution.fit(data1,1); modeldata2=gmdistribution.fit(data2,1); Now
Assume that we have two sets: A=(a_1,a_2,...,a_m) and B=(b_1,b_2,...,a_n) (Not necessarily of same size).
Assume that I have two arrays as follow: $array1 = array(1, 3, 5); $array2
Let's say we have two objects. Furthermore, let's assume that they really have no
Assume you have two web applications running in two different tabs/windows in your browser.
Assume that this is for a 32-bit application. I have two ID values which
Let assume we have two activities. A - main activity, that is home launcher

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.