10.A) How structure in C is different from the union? Give example
Answer:-
![](https://i0.wp.com/media.geeksforgeeks.org/wp-content/uploads/Structure-vs-Union.png?w=1290&ssl=1)
Example of Structure
struct student { int rollno; char name[50]; string phone; };
Example of Union
union Student { char name[32]; int age; string email; };
10.A) How structure in C is different from the union? Give example
Answer:-
Example of Structure
struct student { int rollno; char name[50]; string phone; };
Example of Union
union Student { char name[32]; int age; string email; };