Are anonymous unions and structs within a struct permissible ?

P

pereges

eg.

typedef struct XYZ
{
double x;
union
{
struct
{
int a;
};

struct
{
int b;.
};
};
};

If so how does one access the elements inside such a structure ?
 
A

Ali Karaali

eg.

typedef struct XYZ
{
   double x;
   union
   {
     struct
     {
        int a;
     };

     struct
     {
       int b;.
     };
  };

};

If so how does one access the elements inside such a structure ?

You cant access but if you define like that

struct
{
int i;
int db
}NAME;

NAME is variable that type is a struct.
You can access to i and db like that

NAME.i;
NAME.db;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,535
Members
45,007
Latest member
obedient dusk

Latest Threads

Top