9511_workbook

solved exercises from algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
guia05/ex09.h (110B)
   1 #ifndef _EX09_H_
   2 #define _EX09_h_
   3 
   4 #include <stddef.h>
   5 
   6 double arithmetic_mean(double *, size_t len);
   7 
   8 #endif