Recursions & Recursive Functions in C++ | C++ Tutorials for Beginners #18

Поділитися
Вставка
  • Опубліковано 14 лис 2024

КОМЕНТАРІ • 652

  • @harmankaur3938
    @harmankaur3938 2 роки тому +35

    //Author:Harman kaur
    //purpose:fibonacii series
    #include
    using namespace std;
    int fib(int n)
    {
    if (n < 2)
    {
    return 1;

    }
    else
    {
    return fib(n - 1) + fib(n - 2);
    }

    }
    int main()
    {
    int num;
    cout num;
    cout

    • @Bloodflood
      @Bloodflood 4 місяці тому

      what will be the iterative approach he is mentioning is it with the help of loops

    • @saeedahmedjamali7235
      @saeedahmedjamali7235 2 місяці тому

      Thank you! Needed this for an assignment

  • @aaryanmehta981
    @aaryanmehta981 3 роки тому +98

    Can you give practice uestions after every lecture

  • @apmotivationakashparmar722
    @apmotivationakashparmar722 2 роки тому +83

    fib(5)=fib(4) + fib(3) = fib(2) + fib(3) + fib(2) + fib(1) should in place of fib(2) + fib(3) + fib(2) + fib(3).

    • @rohitashwapratapsingh142
      @rohitashwapratapsingh142 2 роки тому +1

      yes

    • @anju7334
      @anju7334 2 роки тому +4

      Ye chij mujhe samaj ni aayi ki Harry bro ne kaise toda
      Could you pleas explain me?

    • @apmotivationakashparmar722
      @apmotivationakashparmar722 2 роки тому +3

      fib(n) = fib(n-1) + fib(n-2) apply this .

    • @anju7334
      @anju7334 2 роки тому +4

      @@apmotivationakashparmar722
      n = 5 so fib(5) = fib(4) + fib(3) ho gya
      But iske bad ye dubara se jab run hoga to
      fib(4) ke liye fib(4-2) = fib(2)
      Fib(4-1) = fib(3)
      And fib(3) ke lye fib (3-1) = fib(2)
      Fib(3-2) = fib(1)
      Banega but lecture me fib(1) to kahi hai hi nhi

    • @anupamdatta6584
      @anupamdatta6584 Рік тому

      ​@@anju7334 Jab fib(1) meh jayega toh value toh 1 return karega kyuki n

  • @GeekyShubhamSharma
    @GeekyShubhamSharma 4 роки тому +115

    N(N-1)! = Katai jahar concept bilkul sahi paaji😂😁
    dedo ♥️♥️♥️♥️♥️♥️

    • @nirmalbuoy
      @nirmalbuoy 4 роки тому +35

      12th maths padhi hoti toh tujhe zeher nhi lagta ekdum basic hai ye

    • @palashagrawal2343
      @palashagrawal2343 4 роки тому +11

      @@nirmalbuoy 11th maths be

    • @nirmalbuoy
      @nirmalbuoy 4 роки тому +1

      @@palashagrawal2343 Ha wahi jo bhi hai, hume JEE coaching ke waqt aisa kuch 11th 12th nahi padhaya tha isiliye pata nahi kaunse class me aata hai

    • @crazygirls2862
      @crazygirls2862 3 роки тому +6

      11th maths Padhi nahi hai aapne bca wale ho na

    • @iamFJ18
      @iamFJ18 3 роки тому +1

      Halwa hai😂😂

  • @khatariinsaan5284
    @khatariinsaan5284 3 роки тому +14

    7:55 what a clear Explanation

  • @iSubhoo
    @iSubhoo 3 роки тому +23

    Sir, jab samajh me awajata hay, to video ending song bohat acha lagtahay.

  • @Abhishek-dp5tc
    @Abhishek-dp5tc 4 роки тому +131

    competitive programming pe series bana bhai, Please!

    • @SK-gp6cm
      @SK-gp6cm 2 роки тому +3

      Do you find cp series???

    • @Abhishek-dp5tc
      @Abhishek-dp5tc 2 роки тому +3

      @@SK-gp6cm wow 2 years back
      Yes many series are there, I also bought a course on udemy but it is more of DSA focused rather than cp

    • @SK-gp6cm
      @SK-gp6cm 2 роки тому +2

      @@Abhishek-dp5tc can you share that link

    • @Ramneet04
      @Ramneet04 2 роки тому +2

      Bro where can i practice question or should i practice question or first complete whole series of c++ here

    • @gulshansingh7961
      @gulshansingh7961 2 роки тому +4

      @@Ramneet04 first complete this series

  • @YashPatil-t8c
    @YashPatil-t8c 2 дні тому +1

    If a = 5, the program calculates the fifth term in the Fibonacci sequence using the recursive calls:
    fibonacci(5) is called.
    Since a > 2, it goes to fibonacci(5) = fibonacci(3) + fibonacci(4).
    To solve fibonacci(3), it breaks down further:
    fibonacci(3) = fibonacci(1) + fibonacci(2).
    Both fibonacci(1) and fibonacci(2) return 1, so fibonacci(3) = 1 + 1 = 2.
    Meanwhile, for fibonacci(4):
    fibonacci(4) = fibonacci(2) + fibonacci(3).
    fibonacci(2) returns 1.
    fibonacci(3), as calculated earlier, is 2.
    Thus, fibonacci(4) = 1 + 2 = 3.
    Now, substituting back, fibonacci(5) = fibonacci(3) + fibonacci(4) = 2 + 3 = 5.

  • @AnEngineerHuman
    @AnEngineerHuman Рік тому +31

    Loving this playlist.
    Day-12
    Completed upto Tutorial-18
    Date-14/12/2022
    Time-19:32
    Topic-Recursions and Recursive Functions

    • @sayman099
      @sayman099 Рік тому

      bro are u from cs / it branch?

    • @AnEngineerHuman
      @AnEngineerHuman Рік тому +1

      @@sayman099 yes bro,i am from it branch.

    • @pratikingle3963
      @pratikingle3963 Рік тому

      @@AnEngineerHuman CPP DONE???

    • @pratikingle3963
      @pratikingle3963 Рік тому

      @@sayman099 TUM KONSE BRANCH SE HOO??

    • @AnEngineerHuman
      @AnEngineerHuman Рік тому

      @@pratikingle3963 ha ,keh sakte ho .Par jada practise nahi hui...
      Thanks for reminding me

  • @Ishika-n9g
    @Ishika-n9g Рік тому +13

    11:42 if(n

  • @30vaibhavdhaygondexdr.v.sa22
    @30vaibhavdhaygondexdr.v.sa22 4 роки тому +7

    3:06 ----> this is correct

  • @indrocky6530
    @indrocky6530 3 місяці тому +1

    In the fib function, the base case returns 1 for n

  • @nishtha9666
    @nishtha9666 2 роки тому +9

    Ur explanation is Just amazing👍👍👍👍👍The Best

  • @yashodharpatel6594
    @yashodharpatel6594 4 роки тому +18

    We can also do this by using Array, It decreases the execution time.
    1. Factorial :
    int fact(int n){
    int a[100];
    a[0] = 0, a[1] = 1, a[2] = 2;
    for(int i = 3;i

    • @ayushparmar7729
      @ayushparmar7729 3 роки тому

      bhaiya is factorial wale tarike se aur harry bhaiya ke tarike se bhi 20! ka ans nhi aa rha
      ans negative m de deta h
      koi solution is ko solve krne ka for greater integer values

    • @kartikbisht1909
      @kartikbisht1909 Рік тому

      @@ayushparmar7729 20 ka factorial?

    • @kartikbisht1909
      @kartikbisht1909 Рік тому

      @@ayushparmar7729 bhai 20 ka factorial itna badha hota h ki int mi nhi aa sakta
      kyuki int ki range -2147483648 to 2147483647 hoti h aur iska factorial quadrillion mei h

    • @ayushparmar7729
      @ayushparmar7729 Рік тому

      @@kartikbisht1909 bhai vo to ho gya tha jo bhi digit calculate krke aa rhi h use array m store krte joa aur pos pointer ko +1 krte jao

    • @kartikbisht1909
      @kartikbisht1909 Рік тому

      @@ayushparmar7729 ook

  • @arnavmaheshwari6149
    @arnavmaheshwari6149 3 роки тому +30

    I realized something that all the people who are watching this to learn c++ are building there programming style a lot similar to harry bhai's

  • @b10gaming2
    @b10gaming2 3 роки тому +132

    I can't even imagine a world without stack overflow and codewithharry!

    • @seasonalmind7241
      @seasonalmind7241 3 роки тому +6

      can u tell me how 2 returned in fibbonacci at 3?

    • @desiquant
      @desiquant 3 роки тому +10

      @@seasonalmind7241 f(3) = f(2)+f(1) = [f(1)+f(0)] + f(1) = f(0) + 2 f(1) = 1 + 2(1) = 1+2 = 3. Makes sense?

    • @seasonalmind7241
      @seasonalmind7241 3 роки тому +5

      @@desiquant yeah it definitely does.Thanks.

    • @unknownsuperstarmanish7013
      @unknownsuperstarmanish7013 2 роки тому +1

      increase u r imagination

  • @rudranshsharma114
    @rudranshsharma114 27 днів тому

    Giving some question that You can practice
    1)Write a program which displays the largest among 2 No.
    2)Write a program which displays grade on basis of marks
    3)Find the roots of quadratic equation
    4) To find year enter by user is a leap year or not
    5)To find operation of 2 No. enter by the user by (Switch) method{+,-,*,%,/)etc.
    6)To find operation of 2 No. enter by the user by (if else ladder) method
    7) using goto feature create a multiplicative table
    8)Sum of digit of integer enter by user by (goto) statement{EX- 76 = 13}
    9) Sum of n natural numbers using (for) statement
    10)To Find factors of No. enter by user
    11)To find to Reverse of Digit
    12)To state whether no. enter is Penedrom or not
    13)To find No. is prime or composite
    Agar inke code cheye to message me .
    Please Pin this student ki help hogi bhot isse ache questions hain

  • @rajanijaiswal333
    @rajanijaiswal333 4 роки тому +7

    Awesome video
    Question of 03:00
    yess

  • @kiranshinde03
    @kiranshinde03 3 роки тому +2

    3:08 yes Harry Bhai we can write.

  • @AbhrajyotiDas-l7h
    @AbhrajyotiDas-l7h Рік тому +26

    While calculating the factorial of very big number, we get zero since computers try to give the answer in exponential form. So, to get the actual result, change the data type of the function to double to get the exact value. Hope this helps!

    • @AnushkaPandey-h2c
      @AnushkaPandey-h2c Рік тому +3

      Actually, I wanted to calculate the factorial of 100 but it gave 0 as an answer...I was confused. But because of your advice, I changed int to double and I got the correct answer. Thank You!

    • @AbhrajyotiDas-l7h
      @AbhrajyotiDas-l7h Рік тому +3

      @@AnushkaPandey-h2c Happy to know that the solution I gave, helped somebody :) ! This made my day :)

    • @Sports-im6yv
      @Sports-im6yv Рік тому +1

      Bhai datatype long used karke dekh

    • @bansilalnabediya3501
      @bansilalnabediya3501 Рік тому

      ​@@Sports-im6yveven better long double😊

    • @Sports-im6yv
      @Sports-im6yv Рік тому +1

      @@bansilalnabediya3501 thanks bhai ❤

  • @bhuwannath61
    @bhuwannath61 2 роки тому +16

    2:52
    n! = n*(n-1)!
    It is correct .
    Let we take example :
    Factorial of 5 = 5×4x3x2x1 .
    Instead of multiplying like above we should first calculate factorial of 4
    and then multiply it with 5 . Now we get factorial of 5.

  • @HiTech1203
    @HiTech1203 4 роки тому +8

    You have made my coding life easy

  • @karanbisht-k6k
    @karanbisht-k6k Рік тому

    Iterative approach for fibonacci.
    #include
    using namespace std;
    void fibonacci(int n){
    int a =0;
    int b=1;
    int sum =0;
    cout

  • @atifmalik8012
    @atifmalik8012 4 місяці тому

    #include
    using namespace std;
    int factorial(int n){
    if(n==0||n==1){
    return 1;
    }
    else{
    return n*factorial(n-1);
    }
    }
    int main(){
    int n;
    cout

  • @syeduzairmohiuddin5514
    @syeduzairmohiuddin5514 2 роки тому +6

    👍👍👏Excellent explanation.

  • @akshanshkaushal9422
    @akshanshkaushal9422 2 роки тому +4

    16:00 It should be like this. Fib(3)= Fib(2)+Fib(1)...correct me if I'm wrong.

    • @janakkore1597
      @janakkore1597 2 роки тому

      I think you are right since I was searching for this comment as well

  • @pikachugaming3371
    @pikachugaming3371 2 роки тому +1

    You are same like my sir very understanding

  • @royfamily9273
    @royfamily9273 2 роки тому +1

    Yes, n!=n*(n-1)!.
    Thanks Harry Bhaiya

  • @saqlainali8401
    @saqlainali8401 Рік тому

    Wasa ap boht amazing ho sar manna padaga he is so amazing apki explanation to ItnA excellent ha ka na bhi samajh aya to ap samjha hi data han ItnA àcha aj tak mujha kisii na koi topic nhi samjhaya you are the best for explained every topic thank you so much sir thanks

  • @akashwaghmare7221
    @akashwaghmare7221 2 роки тому

    You are the most intelligent programmer in the India

  • @jawadmalik6832
    @jawadmalik6832 Рік тому +3

    we can also find factorial using static as in previous video.

    • @DhvanitMonpara
      @DhvanitMonpara 10 місяців тому

      How? I tried but it isn't possible without recursion or looping.

  • @Lifeinspiration7777
    @Lifeinspiration7777 Рік тому +1

    recursion means function call itself again an again until result is found

  • @nishumittal4277
    @nishumittal4277 2 роки тому +1

    yes, we write n*(n-1) to the n!

  • @satyamsharma8371
    @satyamsharma8371 Місяць тому +1

    Superb... 👍👍👍

  • @vijaysurve4700
    @vijaysurve4700 3 роки тому +1

    Teaching method is awesome👍👏

  • @kunalkumar6783
    @kunalkumar6783 2 роки тому +1

    IN last 16:30 - I will see you next time...... BGM(totally incredible)

  • @abuhuraira5293
    @abuhuraira5293 2 роки тому +6

    recursions means a function is calling itself on its own until it gets the answer

  • @gaganagrawal8194
    @gaganagrawal8194 3 роки тому +6

    Sir please provide practice questions also

  • @kumkumbhagya51
    @kumkumbhagya51 Рік тому +1

    2:51 sahi hoga kyuki yahi formula hai factorial nikaalne ka

  • @anees_05
    @anees_05 Рік тому

    fib(5)
    // fib(4) + fib(3)
    // fib(2) + fib(3) + fib(2) + fib(3)
    harry bhai ap ne is mai ghalti krdi hai mai tou cinfused hogaya tha pehle ab clear hogaya

  • @akashwaghmare7221
    @akashwaghmare7221 2 роки тому

    Your teaching is awesome

  • @harshitjain2081
    @harshitjain2081 3 роки тому +1

    2:55 Yes it is factorial

  • @sajidamehrosh505
    @sajidamehrosh505 3 роки тому +7

    Sir you make programing easy for me really thank you SSO much.....

  • @tayyab.sheikh
    @tayyab.sheikh Рік тому +1

    Now i understand kay India ka har bacha coder kyuon hai.

  • @anshitshukla7498
    @anshitshukla7498 4 роки тому +19

    Data structures aur algorithm pe playlist 🙏🙏🙏🙏

    • @nikhilraj1842
      @nikhilraj1842 4 роки тому +3

      go to geeksforgeeks until codewithharry sir upload Data structures and algorithms

    • @anshitshukla7498
      @anshitshukla7498 4 роки тому

      @@nikhilraj1842 thanks

    • @niteshbovi769
      @niteshbovi769 3 роки тому

      @@nikhilraj1842 can u plz tell me the roadmap for programming language with dsa

    • @nikhilraj1842
      @nikhilraj1842 3 роки тому

      @@niteshbovi769 well i am not a professional in this topic as I learned which i like to do in dsa like question solving and I Don't follow a roadmap.
      So i can't give you roadmap for this.

  • @varshithkumark8993
    @varshithkumark8993 8 місяців тому

    12:57 for n

  • @fellincode2607
    @fellincode2607 3 роки тому

    finally mere ko recursion samajh me aagaya mene java playlist me ek baar video dekha to mere ko utna samajh me nahi mene dusri baar dekhna ka socha procasination hoto gayi!

  • @DaniyalSaqib-my1us
    @DaniyalSaqib-my1us 8 місяців тому

    Recursion is just a function calling itself inside itself

  • @satyamkarn3277
    @satyamkarn3277 2 роки тому +1

    3:07 yes you can write.

  • @MayureshYadav-xf1ii
    @MayureshYadav-xf1ii 13 днів тому

    Thank you so much sir

  • @SamarthChawlaSam
    @SamarthChawlaSam 3 місяці тому +1

    1:32 6! = 720
    2:52 Sahi hogi

  • @khizrshaikh9902
    @khizrshaikh9902 3 роки тому

    2:46
    Yes It is correct
    ye baat sahi hongi

  • @Rizwankhan-dh5xh
    @Rizwankhan-dh5xh 3 роки тому +5

    make a complete course on data structure and algorithum
    please sir

  • @MuhammadNoman-e7j
    @MuhammadNoman-e7j 5 місяців тому

    #include
    #include
    using namespace std;
    void fibonacci_sequence(int );
    int main()
    {
    int n;
    coutn;
    fibonacci_sequence(n);
    return 0;
    }
    void fibonacci_sequence(int n)
    {
    int a=-1 ,b=1 ,i, sum , N=20;
    cout

  • @Techmaster-qp2ut
    @Techmaster-qp2ut 4 роки тому +6

    Best Explination Sir, Very Nice Video

  • @internetenjoyer9186
    @internetenjoyer9186 2 роки тому +9

    For calculation nth term we can use a+(n-1)d, where a is 1st term and d is common difference

    • @ananyasingh774
      @ananyasingh774 2 роки тому +3

      that's for constant series, but here the common difference is changing

    • @Life.Z1
      @Life.Z1 Рік тому

      Ha..it is the staple equation where the difference is fixed

  • @kumkumbhagya51
    @kumkumbhagya51 2 роки тому +1

    bro pls practice set bana do us se aur bhi zyada confidence aa jaata hai jab saare questions complete krleta hu

  • @alnahian8051
    @alnahian8051 2 роки тому

    3:08 yes it can be written

  • @kundanpatidar9207
    @kundanpatidar9207 4 роки тому +6

    Love these content

  • @sanatandharmyogicculture700
    @sanatandharmyogicculture700 2 роки тому

    Teaching method is awesome

  • @chiragparmar1964
    @chiragparmar1964 2 роки тому +1

    I really love all of your videos BUT please change your chrome browser theme to DARK MODE because when you switch from vs code to chrome browser it hurt my eyes badly because we are so focused on your video and suddenly going from black screen to white screen really hurt eye cornea and I cant tolerate that feeling anymore please take this note on a serious measure...btw love your teaching style and keep it on!

  • @runwithrahul
    @runwithrahul Рік тому

    #include
    using namespace std;
    int fib(int n){
    if (n

  • @umangkumar1756
    @umangkumar1756 Рік тому

    we can write factorial n *(n-1)

  • @Ravi_477
    @Ravi_477 2 роки тому +1

    Bhai Competitive Programming pr series banao please

  • @gameforall_official
    @gameforall_official 3 роки тому

    It will be
    If(n

  • @AbhishekKumar-id3yz
    @AbhishekKumar-id3yz 3 роки тому

    Fibonacci Series 0 se start hota hai. 12:46 par n sahi tha. Aapne 1 kar diya anways bade bade sahro me chotti chotti baat hote rahti hai

  • @AdityaGupta-cz7wp
    @AdityaGupta-cz7wp 4 роки тому +5

    recursion function is also known as aatmnirbhar function

  • @chaolobi7698
    @chaolobi7698 2 роки тому

    thanks harry bro

  • @ashitranjan3971
    @ashitranjan3971 Рік тому

    Well enjoying the tutorial

  • @harkishannarola4223
    @harkishannarola4223 Рік тому +1

    #include
    using namespace std;
    int work(int n){
    if(n>=30){
    return n = 3;
    }
    else if(n>=15){
    return n = 4;
    }
    else if(n>=10){
    return n = 5;
    }
    else if(n>=5){
    return n = 6;
    }
    return n = 8;
    }
    int main(){
    int a;
    cout

  • @shumailabatool7493
    @shumailabatool7493 3 роки тому

    Yes we can write n*(n-1)!

  • @gurpreetsingh-jh3bk
    @gurpreetsingh-jh3bk 3 роки тому +1

    thank you sir

  • @07670
    @07670 2 роки тому +6

    Your way of teaching is really awesome . But I have one request can u plz written program separately , sometime it's confusing and irritating too...

  • @iSubhoo
    @iSubhoo 3 роки тому +1

    Yes Sir, n! = n * (n-1)!

  • @Sousa2255
    @Sousa2255 2 роки тому

    3:05 Obviously sir

  • @rashidhashmi6181
    @rashidhashmi6181 Рік тому

    yes u can it as factorial✅

  • @TanyaGupta-y3g
    @TanyaGupta-y3g 4 місяці тому

    // factorial of n
    #include
    using namespace std;
    int factorial (int n){
    if (n==1||n==0){
    return 1;
    }
    int factorialNm1=factorial(n-1);
    int factN=factorialNm1*n;
    return factN;
    }
    int main(){
    int n;
    coutn;
    cout

  • @muhammadareebkazmi9476
    @muhammadareebkazmi9476 2 роки тому

    Thank you, Harry bhai!

  • @SAHIL----10
    @SAHIL----10 10 місяців тому +1

    int getNthFib(int n) // without recursion using iterative method
    {
    if (n == 1)
    {
    return 0;
    }
    else if(n == 2)
    {
    return 1;
    }

    else
    {
    int prevPrev = 0;
    int prev = 1;
    int currentNumber;
    for (int i = 2; i

  • @tejpreetsingh870
    @tejpreetsingh870 Рік тому

    sir please make some practice sets also likke python course

  • @manavroy7293
    @manavroy7293 2 роки тому +1

    3:06
    Yes.

  • @vanitascarte9949
    @vanitascarte9949 2 роки тому

    Harry Bhaiya competitive programming ka bhi course nikaliye

  • @hibbonix9530
    @hibbonix9530 Рік тому +1

    Muje bohot achhe se samj aa gaya thank you sir 😭😭😭

    • @satyaanand9243
      @satyaanand9243 Рік тому

      toh ro kyu rahe ho?

    • @hibbonix9530
      @hibbonix9530 Рік тому

      @@satyaanand9243 hay tum bhi dsa sikh rahe ho kay?? Please reply karna

  • @deepikasoni4833
    @deepikasoni4833 9 місяців тому

    Thankyou so much sir🙏🏻😁

  • @ravikaramunge8028
    @ravikaramunge8028 4 роки тому +1

    Please make the DataStructure videos

  • @cheryrj8305
    @cheryrj8305 Рік тому

    thnk u soo much for this, its really helpful for me

  • @codingislit1404
    @codingislit1404 3 роки тому

    Thanks bhaiya

  • @maygirl4086
    @maygirl4086 3 роки тому

    yes we can write it tthat way

  • @hopes_alive-100
    @hopes_alive-100 3 роки тому

    3:06 yes! likh sakte hai

  • @souvikroy3584
    @souvikroy3584 11 місяців тому

    Yest n*(n-1)we can write for n!

  • @usefullyuseless4404
    @usefullyuseless4404 3 роки тому +4

    i want to call you and will say that...
    HAA BHAI ACCESSS KARLI HAI PLAYLIST!!!!! KARLI HAIIIIII !!!!!!!!!!!!!!

  • @mrThundergodpro
    @mrThundergodpro 2 роки тому

    14:39 fib(3) will break in fib(3) + fib(1)

    • @82yroldotaku
      @82yroldotaku Рік тому

      i suppose u meant fib(3) will break in fib(2) + fib(1)

  • @saadhassan8813
    @saadhassan8813 6 місяців тому

    good teacher

  • @XengShi
    @XengShi 4 роки тому +3

    # same function in python
    def factorial(x):
    if x

    • @prashantmajumdar1519
      @prashantmajumdar1519 4 роки тому

      But very slow as compared to cpp if you run it it will take 5-7 sec but in cpp even more lines of code will run under 2 sec

    • @dhananjayjadhav7064
      @dhananjayjadhav7064 3 роки тому +1

      But code is wrong💯💯

  • @newsend257
    @newsend257 Рік тому

    time 2:53
    Yes , ture , n! = n * ( n -1)

  • @sanjivsamal2845
    @sanjivsamal2845 Рік тому

    14:36 last line of fib comment correction -- fib(2) + fib(3) + fib(1) + fib(2)

  • @sagar_wani
    @sagar_wani 3 роки тому

    Thank Harry 😊

  • @angshumandasgupta4857
    @angshumandasgupta4857 2 роки тому

    yes you are right

  • @shivanandvishwakarma3000
    @shivanandvishwakarma3000 4 роки тому

    Yes, We can write n! = n*(n-1)!

  • @dev1658
    @dev1658 3 роки тому

    Definitely sir we can write it