Computer Science, asked by muskan1480, 7 months ago

wap in c to find the average of five numbers in c

Answers

Answered by borhaderamchandra
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