//*** Introducing using of the functions *** /* This program uses 2 functions: -The first one finds the maximom of the entered numbers. -The second one calculates the average of the numbers. */ #include #include int findmax(int,int,int); float average(int,int,int); void main() { int x,y,z,m; float ave; clrscr(); printf("Enter three integer numbers please:\n"); scanf("%d%d%d",&x,&y,&z); m=findmax(x,y,z); ave=average(x,y,z); printf("The maximom of your numbers is %d\n",m); printf("The average of your numbers is %f\n",ave); printf("*** Checking the value of x inside the main function: %d",x); getch(); } //Defining the structure of the first function int findmax(int a1, int a2, int a3) { int max; max=a1; if (max