9 lines
141 B
C
9 lines
141 B
C
#ifndef P2_H
|
|
#define P2_H
|
|
|
|
void find_avg_min_max(double* arr, int size,
|
|
double* out_avg, double* out_min, double* out_max);
|
|
|
|
#endif
|
|
|