wap in c to find the average of five numbers in c
Answers
Answered by
1
Explanation:
main()
{
int a,b,c,d,e,avg;
print("pl enter the values");
scanf("%d%d%d%d%d",&a,&b,&c,&d,&e);
avg=(a+b+c+d+e)/5;
print("%d",avg);
}
Similar questions