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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:32:40+00:00 2026-05-25T00:32:40+00:00

Recently I am working on windows and I found that lot of data structures

  • 0

Recently I am working on windows and I found that lot of data structures are defined as struct with union as member variables. Example of this would be EVT_VARIANT in Windows.

I failed to understand what is the purpose behind this.

  • 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-25T00:32:41+00:00Added an answer on May 25, 2026 at 12:32 am

    When a struct contains union members it’s generally done as a space saving mechanism. If the struct can be of certain sub-types by which only certain members are valid then a union is a good way to not waste space.

    For example

    enum NumberKind {
      Integer, 
      FloatingPoint 
    };
    
    struct Number {
      NumberKind kind;
      union {
        int integerValue;
        float floatValue;
      };
    };
    

    In this scenario I’ve defined a struct Number which can have type types of numeric values: floating point and integer. It’s not valid to have both at the same time so rather than waste space by having both members always defined I created a union which makes the storage of both equal to the size of the biggest.

    Sample Usage of Above as requested

    void PrintNumber(Number value) {
      if (value.kind == Integer) {
        printf("%d\n", value.integerValue);
      } else {
        printf("%f\n", value.floatValue);
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am on windows/apache/mysql/php setup. i have recently reinstalled PHP. but i found that
I've been working on data import functions for a library recently and I found
I was recently working on a windows program that would sometimes become unresponsive when
I recently installed PHP on IIS/Windows 7, but it isn't working. I am getting
I was recently working on an application that sent and received messages over Ethernet
I was recently working with a DateTime object, and wrote something like this: DateTime
I am recently working on better indexing concepts. as part of that, I am
I'm recently working on a WPF application that uses the datagrid from the WPF
I was recently working on a project that involving connection to a POP3 Server.
I recently was working with a subversion project that checked out code not only

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.