I need to write the implementation of the function
double my min (double* arr, int len);
which returns the minimum value of an array (arr) of length len.
the only library that is allowed is to assert.
Also would need the implementation of the function mystrcmp:
int mystrcmp (const char* str1, const char* str2);
that does the exact same thing as the normal strcmp function. Only assert library is allowed.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 1 | 2 | 3 | 4 | 5 |