I\'m trying to understand this binomial coefficient recursion code in C.
int binomial(int n, int m){ if(m == n){ return 1; } else if (m == 0){