Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
2 Posted Topics
1. Write a function called MaxMinAvg in C that takes an integer array as argument and finds the maximum, minimum and the average value of the array elements. The function signature in C is as follows: void MaxMinAvg(int arr[], int * max, int * min, int * avg); Write a …
The function signature in C is as follows: void MaxMinAvg(int arr[], int * max, int * min, int * avg); Write a main function to test your code with different input valuesto demonstrate that your function is robust.
The End.
gurdeep kaur