Write a function which accepts an array of size n containing integer values and returns the average of all values. Call the function from main program.
Solution :
/*==============================
Girfa Student Help
Program : Array Average using function
More Program
:http://girfahelp.blogspot.in/p/function-programming.html
================================*/
#include<stdio.h>
#include<conio.h>
#define MAX 5
int avg(int*);
