When should unions be used? Why do we need them? 20 Answers 20
I have used unions earlier comfortably; today I was alarmed when I read this post and came to know that this code union ARGB { uint32_t colour; struct componentsTag...
Is there any good example to give the difference between a struct and a union? Basically I know that struct uses all the memory of its member and union...