#include <stdio.h>
#include <conio.h>
//Find average marks of 5 subjects - FScOnline.info
int main()
{
int a,b,c,d,e,average;
printf("Enter marks of subject 1: ");
scanf("%d",&a);
printf("Enter marks of subject 2: ");
scanf("%d",&b);
printf("Enter marks of subject 3: ");
scanf("%d",&c);
printf("Enter marks of subject 4: ");
scanf("%d",&d);
printf("Enter marks of subject 5: ");
scanf("%d",&e);
average=(a+b+c+d+e)/5;
printf("\nAverage: %d",average);
getch();
return 0;
}
Trending
- Live baccarat in Washington – a beginner’s guide
- Online Baccarat in Ohio – A Quick Overview
- Live baccarat in Rhode Island: market trends, player dynamics, and regulatory landscape
- The Golden Card Game Takes Flight Over the Wasatch: Online Baccarat in Utah
- Saletti Casino 2026 – Arvio, turvallisuus ja pelikokemus


