MSUStudentWork/ProcessingSequences/Second/count_elements.h

13 lines
218 B
C

#ifndef COUNT_ELEMENTS
#define COUNT_ELEMENTS
#include <stdio.h>
#include <math.h>
#define INACCURACY 1.e-10
int detectNumber(double number, int count);
int summa(int count);
int countElements(FILE * file);
#endif