write a function in c which return id & marks of student who has more than 50 marks in math
Answers
Answered by
0
Answer:
C Program Enter the Student Marks and Find the Percentage and Grade
int m1,m2,m3,total;
scanf("%D%D%D",&m1,&m2,&m3);
total=m1+m2+m3;
per=total*100/300;
if(per>=60&&per<=100)
else if(per>=50&&per<=60)
else if(per>=40&&per<=50)
Similar questions