C program to Use structure within union & display the contents of structure elements

Problem Statement :Create one Structure and declare it inside union.Then accept values for structure members and display them.Write a program to use structure within union , display the contents of structure elements [crayon-60fba4c1053d3512240583/] Output : [crayon-60fba4c1053db487138262/]

C Program to Calculate Size of Structure using Sizeof Operator

Program : Calculate Size of Structure in C Programming [crayon-60fba4c105781806959309/] Explanation :Structure is Collection of elements of the Different data Types. Size of the Structure Can be Evaluated using "sizeof Operator"[crayon-60fba4c105789029894940/] Formula for Calculating Size of Structure : [crayon-60fba4c10578c445524012/] Remember :Sizeof is Operator not function Sizeof Operator Takes any Variable as Parameter.