C Program to Find Average of Two Numbers

Write a C Program to Find Average of Two Numbers with an example. This C example allows to enter two Integers and calculates the sum and average of that numbers. #include <stdio.h> int main() { int number1, number2; float res; printf(“Enter the First Number to find = “); scanf(“%d”,&number1); printf(“Enter the Second Number to find … Read more