Archive

Category Archives for "C Programming"

Embracing Union in C Programming

Union in C Unions are similar to structures in that they also store different types of elements. We can store different types of elements and store them in a union. Union is declared using the keyword ‘union’. Structure member operator (.) or structure pointer member (->) to refer structure elements. The same operator can be […]

Continue reading
1 2 3 7