What exactly are they used for and please help me with a few questions.
1 2 3 4 5 6
union { //Why am I able to have no name for a union? How would you call this?
int a;
int b;
int c;
}something; /*I've seen this at the end sometimes and what is this? What is its
purpose and when should I use it?*/