0

Help

How can I print n!/(m!*(n-m)!) In c

13th Dec 2019, 8:07 PM
Saba
3 Antworten
0
printf("n!/(m!*(n-m)!));
13th Dec 2019, 9:48 PM
✳AsterisK✳
✳AsterisK✳ - avatar
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.
13th Dec 2019, 10:18 PM
Dewesh Chopra
Dewesh Chopra - avatar
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)/.....
14th Dec 2019, 9:52 AM
Jayakrishna 🇮🇳