Computer Science, asked by mi7668060, 4 months ago

declare a structure of a student with details like Roll number Student name and total marks using this adhikta and with 50 elements write a program to read details of an students and print the list of students who have scored 75 marks and above​

Answers

Answered by sumanpreet2012005
0

Answer:

C Program to Store Information of a Student Using Structure ... #include <stdio.h> struct student { char name[50]; int roll; float marks; } s; ... In this program, a structure student is created

Similar questions