I. Explain structure
of
C programming
Answers
Answered by
25
Answer:
Structure is a user-defined datatype in C language which allows us to combine data of different types together. Structure helps to construct a complex data type which is more meaningful. It is somewhat similar to an Array, but an array holds data of similar type only. ... In structure, data is stored in form of records.
Answered by
3
Explanation:
Structure is a group of variables of different data types represented by a single name. Lets take an example to understand the need of a structure in C programming. ... We can create a structure that has members for name, id, address and age and then we can create the variables of this
structure for each student.
Structure is a user-defined datatype in C language which allows us to combine data of different types together. Structure helps to construct a complex data type which is more meaningful. It is somewhat similar to an Array, but an array holds data of similar type only. ... In structure, data is stored in form of records.
Similar questions