Computer Science, asked by aleem21225, 8 months ago

write in detail about structure of c rogram​

Answers

Answered by tanmaygandhi291
0

Answer:

i am busy right now i will do that later

Answered by maitrysheth
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. One way of doing this would be creating a different variable for each attribute, however when you need to store the data of multiple students then in that case, you would need to create these several variables again for each student. This is such a big headache to store data in this way.

We can solve this problem easily by using structure. 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. This may sound confusing, do not worry we will understand this with the help of example.
Similar questions