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.
{
float sum=0;
for(int count=0;count<10;count++)
sum+=marks[count];
return sum/10;
}