What is the memory size of union in following example? union car { char name[50]; int price; }
Answers
Answered by
0
Answer:
Explanation:
union car{ char name[50]; int price; }c1, c2, *c3; OR; union car{ char name[50]; int ... price for union variable c1 in above example, it can be accessed as c1.price . ... of memory required to store a structure variables is the sum of memory size of ...
Similar questions