Difference between structure and union in c programming language
Difference between structure and union in c Structure Structure is a user defined datatype, programmer can pack up one or more variables of other datatypes into a single element. struct keyword is used to define a structure. Memory is allocated to all structure members. Dot ( . ) operator is used to access a structure … Read more