Math, asked by asjaya4095, 15 days ago

Write a c program using structure to prepare the students mark statement

Answers

Answered by sarvani61
0

Answer:

A structure is a user-defined data type in C/C++. A structure creates a data type that can be used to group items of possibly different types into a single type. 'struct' keyword is used to create the student structure as: struct Student { char* name; int roll_number; int age; double total_marks; }

Similar questions