9511_workbook

solved exercises from algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
guia05/ex10.h (130B)
   1 #ifndef _EX10_H_
   2 #define _EX10_H_
   3 
   4 #include <math.h>
   5 
   6 #include "ex09.h"
   7 
   8 double standard_deviation(double *, size_t len);
   9 
  10 #endif