#include "functions.h" unsigned long permutations(unsigned int m, unsigned int n) { if (m==0) return 1 ; else return n*permutations(m-1,n-1) ; }