C program to read roll no and marks of three subjects and calculate the total, percentage and division

C program to read roll no and marks of three subjects and calculate the total, percentage and division

Q:-Write a C program to read roll no and marks of three subjects and calculate the total, percentage and division


.

#include<stdio.h>
#include<conio.h>
void main() 
{
int roll_no,m1,m2,m3,total;
float average;
clrscr();
printf("Enter roll number : ");
scanf("%d",&roll_no);
printf("Enter marks 1 : "); 
scanf("%d",&m1);
printf("Enter marks 2 : ");
scanf("%d",&m2);
printf("Enter marks 3 : ");
scanf("%d",&m3);
total=m1+m2+m3;
average=total/3.0;
printf("\nStudent Roll Number : %d",roll_no);
printf("\nMarks 1 : %d",m1);
printf("\nMarks 2 : %d",m2);
printf("\nMarks 3 : %d",m3);
printf("\nTotal : %d ",total);
printf("\nAverage : %f ",average);
 
   getch();
}
 

Output

C Program to Accept Student Roll No, Marks in 3 Subjects & Calculate Total, Average & Print.

TOP