Program 73 #P73 - C program to Find the value of ln(N!) using Recursion Using Recursion #C193
Channel:
Subscribers:
10,700
Published on ● Video Link: https://www.youtube.com/watch?v=mf8E7w_HR6M
/* Approach:
Method -1: Calculate n! first, then take its log value.
Method -2: By using the property of log, i.e. take the sum of log values of n, n-1, n-2 …1.
ln(n!) = ln(n*n-1*n-2*…..*2*1) = ln(n)+ln(n-1)+……+ln(2)+ln(1)
Below is the implementation of the Method-2:*/
#rubalsolutions #coding #developer #programming #programmer #technology #clanguage #computerscience #c #informaticpractices #sub #subscribe #youtube #newyoutuber #youtubechannel
Other Videos By Rubal Solutions
Tags:
computer education
computer education in Hindi
computer education for kids
basic computer training
kids computer
computer for kids
kids technology
rubalsolutions
beginner YouTube
coding
developer
newyoutuber
subscribe
sub
computer-science
fibonacci series
ln(N!) using Recursion