Recursion in C with factorial program | C Programming in tamil | Logic First Tamil

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ส.ค. 2024
  • Recursion explained easily with factorial example. What happens in the background when a recursive call is made is explained in detail.
    C programming playlist
    • Introduction to C prog...
    English channel link,
    / @logicfirst31

ความคิดเห็น • 24

  • @naveenkarthik2801
    @naveenkarthik2801 2 ปีที่แล้ว +16

    I am a biology student but now studying mechanical engineering. I don't have any such a basic knowledge of programming. So, I feel very hard to understand the programmes and coding. After watching this video, I am very clear i. Recursion topic. Thanks

  • @thamizhsivagami3515
    @thamizhsivagami3515 3 ปีที่แล้ว +6

    vera level explanation

  • @shanmugamadhavan184
    @shanmugamadhavan184 2 ปีที่แล้ว +2

    Fantastic Mam...!!!! Great Job
    Thanks Lot

    • @LogicFirstTamil
      @LogicFirstTamil  2 ปีที่แล้ว +1

      Please check other videos in the channel and also pls share with your friends.

    • @shanmugamadhavan184
      @shanmugamadhavan184 2 ปีที่แล้ว

      @@LogicFirstTamil Defenetly Mam
      it's my pleasure 🥰

    • @user-tu4km8kc6l
      @user-tu4km8kc6l ปีที่แล้ว

      @@LogicFirstTamil madam you have to use long keyword in instead of "int" in int fact (int n)

  • @kuttykutty6284
    @kuttykutty6284 2 ปีที่แล้ว +1

    Explaining vera level...mam

  • @nithyakiruba8219
    @nithyakiruba8219 ปีที่แล้ว

    Very clear explanation mam. Very very thank you mam

  • @NaveenKumar-vl6xv
    @NaveenKumar-vl6xv 2 ปีที่แล้ว +1

    Good explanation in recursion topic

  • @Infinityy37
    @Infinityy37 2 ปีที่แล้ว +3

    Hi sister.Can you show how to do fibonacci like factorial?

  • @najmudheenkalapatil78
    @najmudheenkalapatil78 2 ปีที่แล้ว +2

    Excellent 👍👍

  • @mohansastraite6666
    @mohansastraite6666 2 ปีที่แล้ว +1

    Awesome explanation mam

  • @sssureshtriples6686
    @sssureshtriples6686 3 ปีที่แล้ว +1

    Thanks mam

  • @laxshanpanchavarnan3655
    @laxshanpanchavarnan3655 3 ปีที่แล้ว +1

    Thanks you ❤️

  • @jerry9238
    @jerry9238 ปีที่แล้ว

    Thank you!

  • @reeshmashama
    @reeshmashama 11 หลายเดือนก่อน

    well explained

  • @ayyanar1438
    @ayyanar1438 ปีที่แล้ว

    Thanks Madam🙏

  • @harishharish445
    @harishharish445 2 ปีที่แล้ว

    Ma'am how to student mark recursion vachu yepadi program pannadhu if goto illa ma

  • @taeya3907
    @taeya3907 2 ปีที่แล้ว +1

    In that main function, if we gave it as int main... then we have to write return 0 at the end or not?

  • @Surya-bd4ec
    @Surya-bd4ec 6 หลายเดือนก่อน

    super

  • @srirengan5326
    @srirengan5326 ปีที่แล้ว

    👍

  • @nalanahathavan145
    @nalanahathavan145 2 ปีที่แล้ว

    🔥

  • @livin7673
    @livin7673 3 ปีที่แล้ว +1

    #include
    int checkForPrime(int);
    int i;
    int main()
    {
    int n1,primeNo;
    printf("\t Recursion : Check a number is prime number or not :
    ");
    printf(" Enter any number : ");
    scanf("%d",&n1);
    i = n1/2;
    primeNo = checkForPrime(n1);
    if(primeNo==1)
    printf(" The number %d is a prime number.
    ",n1);
    else
    printf(" The number %d is not a prime number.
    ",n1);
    return 0;
    }
    int checkForPrime(int n1)
    {
    if(i==1)
    {
    return 1;
    }
    else if(n1 % i == 0)
    {
    return 0;
    }
    else
    {
    i = i - 1;
    checkForPrime(n1);
    }
    }
    mam i have a doubt in this code. i understoood the use of i in this code. But, what is logic behind "i=n1/2".