Computer Science, asked by sujitsingh495, 10 months ago

Explain about Structure Program In C

Answers

Answered by Anonymous
0

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. Lets say we need to store the data of students like student name, age, address, id etc.

Answered by TechnologKrish
3

Answer:

mark as brainiest please

Explanation:

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