GkSeries.com

Q.

Size of the following union (assume size of int=2, size of float=4 and size of char=1);

	union ABC
	{
		int a;
		float b;
		char c;
	};
	
[A] 2
[B] 4
[C] 1
[D] 7
Answer & Explanation
Option: [B]

union is a data type in which all the members are stored in the same location. The memory size of union is equal to the memory size of the highest member variable. Each members of union can be accessed one by one. In this case size of float is 4. So the size of the union is 4.

DOWNLOAD CURRENT AFFAIRS PDF FROM APP

Please share this page

Click Here to Read more questions

Teacher Eligibility Test