how to Write a program in C to accept a student s marks in Mathematics, Physics and Chemistry. Display the total and average of these marks?

Question : Write a program in C to accept a student s marks in Mathematics, Physics and Chemistry. Display the total and average of these marks. Answer : #include<stdio.h> int main(){int Mathematics_Marks, Physics_Marks, Chemistry_Marks;float Total_Marks,Average_Marks;printf(“Enter student’s marks in Mathematics:”); scanf(“%d”,&Mathematics_Marks);printf(“Enter…

This Question has been answered. 

Please Subscribe to See Answer or To Get Homework Help