0
Help
How can I print n!/(m!*(n-m)!) In c
3 Answers
0
printf("n!/(m!*(n-m)!));
0
Do you want to print the exact statement as it is, or write a code to calculate the value using the above formula and print it.
0
As you know n!=n*(n-1)*(n-2)*(n-3)*....1
Implement this function for n!. Use it your statement by calling...
Like fact(n)/.....