Syncing to work on interview with entrepreneur essay
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
// Calculate the maximum value in an array of floats
|
||||
float arrMaxf(float* arr, unsigned int length);
|
||||
|
||||
// Calculate the minimum value in an array of floats
|
||||
float arrMinf(float* arr, unsigned int length);
|
||||
|
||||
// Calculate the index of the maximum value in an array of floats
|
||||
unsigned int arrMaxfIndex(float* arr, unsigned int length);
|
||||
|
||||
// Calculate the index of the minimum value in an array of floats
|
||||
unsigned int arrMinfIndex(float* arr, unsigned int length);
|
||||
Reference in New Issue
Block a user