C++ Computer Science

profileshahanil436
BinomialFunctions.hpp

/** * * @description Header file of definitions for implementation * the Binomial Coefficient functions. We have functions for computing * the factorial of an integer and for counting the number of combinations * of n choose i items in this library. */ #ifndef _BINOMIALFUNCTIONS_H_ #define _BINOMIALFUNCTIONS_H_ #include <iostream> using namespace std; // global definitions typedef long long int bigint; // give long int an alias name of bigint // Function prototypes for our BinomialFunctions library go here #endif // _BINOMIALFUNCTIONS_H_