WAP to input any two numbers and add the number and find the average
Answers
Answered by
1
Answer:
#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 two decimal places
printf("Average of %d and %d is: %.2f",num1,num2,avg);
return 0;
}
Ex._Output:
Enter first number: 12
Enter second number: 13
Average of 12 and 13 is: 12.50
Explanation:
PLEASE FOLLOW ME AND DROP SOME THANKS TOO ❤️❤️❤️
Similar questions
Physics,
3 hours ago
Social Sciences,
3 hours ago
Math,
3 hours ago
Social Sciences,
5 hours ago
Science,
8 months ago
Geography,
8 months ago
Math,
8 months ago