Answer:
#include<stdio.h>
void main(){
int a,b,c,product,average;
printf("Enter 3 intgeres");
scanf("%d%d%d",&a,&b,&c);
product=a*b*c;
average=(a+b+c)/3;
printf("Product is %d",product);
printf("Average is %d",average);
}
Step-by-step explanation:
Here we are reading 3 integers and finding their average and product using integer athematic and printing the same using printf statement.