Why do we use structure?

Structure helps to build a complicated information kind in more significant way. It is somewhat identical to an Array. The only difference is that array is used to shop selection of identical datatypes while structure can shop selection of all sorts of information.
 
Structure helps to build a complicated information kind in more significant way. It is somewhat identical to an Array. The only difference is that array is used to shop selection of identical datatypes while structure can shop selection of all sorts of information.
 
structure is another user defined data type available in C that allows to combine data items of different kinds.
Structures are used to represent a record.
 
Back
Top