C – Union

Like Structure in C, Union is also a user-defined data type that is used to store the collection of different data types which are grouped together. Union and structure both are the same, except allocating memory for their members. Structure …

Read moreC – Union

C Nested Structure

Nested Structure in C is nothing but the structure within a structure. We can declare a structure inside a structure and have its own member function. With the help of nested structure, complex data types are created. The struct declare …

Read moreC Nested Structure