1#ifndef FUNCTIONS__H 2#define FUNCTIONS__H 3 4int factorial(int n); 5int binomial(int n, int D); 6 7 8#endif 9 10