C Program to find the Average of two numbers

Here we will write two C programs to find the average of two numbers(entered by user). Example 1: Program to find the average of two numbers #include <stdio.h> int main() { int num1, num2; float avg; printf(“Enter first number: “); scanf(“%d”,&num1); printf(“Enter second number: “); scanf(“%d”,&num2); avg= (float)(num1+num2)/2; //%.2f is used for displaying output upto […]