C program Sum and Average of N numbers
It has two C program to do sum and average of N numbers. Sum of N numbers - N integers are given to it as input and return sum of input integers as result Average of N numbers - N integers are given to it as input and return average of inputs integers as result Sum of N numbers - algorithm The input N integers read from user add the N integers store result into a variable sum. and then prints sum value after end of loop. set sum=0 Read N integers For i=1 to N sum = sum + integers[i] End For print sum Average of N numbers - algorithm The input N integers read from user add the N integers store result into a variable sum. after end of loop, divide sum value by N and store results into a variable average, then prints average value . set su...