Write a program to read the marks of 50 students in a class and display the following:

1.average mark obtained by each student. 2.print the roll number and average marks of the students whose average mark is above 80. 3.print the roll number and average marks of the students whose average mark is below 40.

  • Sree
  • 20 Sep
  • 10601 Views
  • 1 Answer
Your Answer

{
float sum=0;
for(int count=0;count<10;count++)
sum+=marks[count];
return sum/10;
}

-1
c programming
Practice Mock Test
c programming