How can I access members of an association that exist within a structure?
Consider a piece of code:
struct Emp {
char name[20];
union address {
char addr[50];
};
};
struct Emp e;
Using e, how do I access a type addrwithout creating any union object?
source
share