C Functions Question:

Do you know what are the properties of Union in C?

Tweet Share WhatsApp

Answer:

A union is utilized to use same memory space for all different members of union. Union offers a memory section to be treated for one variable type , for all members of the union. Union allocates the memory space which is equivalent to the member of the union , of large memory occupancy.

Download C Functions PDF Read All 45 C Functions Questions
Previous QuestionNext Question
Tell me what is the purpose of "register" keyword in C Language?Explain the use of "auto" keyword in C Programming?