C Program to calculate sum of 5 subjects and find percentage

#include #include void main() { int s1,s2,s3,s4,s5,sum,total=500; float per; clrscr(); printf(“enter marks of 5 subjects: ”); scanf(“%d%d%d%d%d”,&s1,&s2,&s3,&s4,&s5); sum=s1+s2+s3+s4+s5; printf(“sum=%d”,sum); per=(sum*100)/total; printf(“percentage=%f”,per); getch(); } Output: enter marks of 5 subjects: 60…

Continue ReadingC Program to calculate sum of 5 subjects and find percentage