write a c program that stors 10.10 in first number and 85.2 in second number and 91.3 in third number.total average of three num | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

write a c program that stors 10.10 in first number and 85.2 in second number and 91.3 in third number.total average of three num

11th Oct 2017, 7:18 AM
Abdikarim Abdirasak Yusuf
Abdikarim Abdirasak Yusuf - avatar
1 Answer
+ 4
float n1 = 10.10; float n2 = 85.2; float n3 = 91.3; float average = (n1+n2+n3)/3;
11th Oct 2017, 7:25 AM
Dapper Mink
Dapper Mink - avatar