answersLogoWhite

0

all the three are user defined datatypes

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is structure and union?

Structure is a query that is used in language c++


What is a major similarity between the African Union and the European Union?

both operate on a regional level


What is major similarity between the African Union and the European Union?

both operate on a regional level


What is a major similarity between African union and the European union?

both operate on a regional level


What was the official language of Soviet Union?

Official language of Soviet Union was russian.


How do you Declare and initialized structure list different between union and structure?

C unions are also like structures. We have to allocate more memory when we use stucture.Because, memory needs to be allocated to all structure variables. Where as in Union, less memory is enough to allocate. Because, memory is allocated for only one member which occupies more memory among all members in the union. But, both have their own advantages and disadvantages.I came across one website which gives fair idea of union and structure difference and good sample programs and good explanationsC unionC structure


What is the language of the poem union square?

The language of the poem "Union Square" is English.


What is the official language of Union Territory of Lakshadweep?

The official language of the Union Territory of Lakshadweep is Malayalam.


When was Dutch Language Union created?

Dutch Language Union was created on 1980-09-09.


What is similarity between a union and enumeration?

Nothing, only the syntax (very little). Eg.: struct { int foo; double bar; } strtest; enum { monday=0, tuesday=1, ... } enumtest;


Difference between structures and union in c Language?

Structure: Structure is a combination elements, which can be predefined data types or other structure. The length/size of the structure is the sum of the length of its elements.In C, structures cannot containn functions. in C++ it can.Union: Union is a combination elements, which can be predefined data types or other union . But, the size/length of union is the maximum of internal elements.the sizeof() operator returns the size slightly more than calculated size due to padding, which again depends on OS


Structure and union in c?

Both usable.