#include <stdio.h> int main(void) { int count = 110; long sum = 10L; float average = 0.0f; average = (float)sum/count; printf("\nAverage of the ten numbers entered is: %f\n", average); return 0; }
Average of the ten numbers entered is: 0.090909