22. Write a program to calculate average and total of 5 students for 3 subjects (use nested for loops)

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,std[5][3];
float sum[5],avg[5];
printf("Enter the marks of students:\n");
for(i=0;i<5;i++)
{
for(j=0;j<3;j++)
{
scanf("%d",&std[i][j]);
}
}
for(i=0;i<5;i++)
{
for(j=0;j<3;j++)
{
printf("%d  ",std[i][j]);
}
printf("\n");
}
for(i=0;i<5;i++)
{
for(j=0;j<3;j++)
{
sum[i]=sum[i]+std[i][j];
}
}
for(i=0;i<5;i++)
{
for(j=0;j<3;j++)
{
avg[i]=sum[i]/3;
}
}
for(i=0;i<5;i++)
{
printf("sum[%d]=%f   ",i,sum[i]);
printf("avg[%d]=%f\n",i,avg[i]);
}
getch();
}


#OUTPUTS:


Comments

Popular posts from this blog

12. Write a program to read marks from keyboard and your program should display equivalent grade according to following table(if else ladder) Marks Grade 100 - 80 Distinction 79 - 60 First Class 59 - 40 Second Class < 40 Fail

13. Write a c program to prepare pay slip using following data. Da = 10% of basic, Hra = 7.50% of basic, Ma = 300, Pf = 12.50% of basic, Gross = basic + Da + Hra + Ma, Nt = Gross – Pf.