Posts
 
Reputation
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
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 1
c x 1

2 Posted Topics

Member Avatar for Lenny19

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 …

Member Avatar for saeed67
0
1K
Member Avatar for gurdeep kaur

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.

Member Avatar for John A
0
93

The End.