Recursion in C | C-Programming Ep-30 | Tamil | code io

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ม.ค. 2025

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

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

    Your teaching is amazing bro.. 👏👏Can you put a complete tutorial for data structure and algorithm

  • @Madadamy-pn8fo
    @Madadamy-pn8fo ปีที่แล้ว +2

    Your teaching is amazing bro😊

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

      Thank you 🤩🤩🤩🤩🤩

    • @Madadamy-pn8fo
      @Madadamy-pn8fo ปีที่แล้ว

      Ok bro☺

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

    Super explanation 👌

  • @naveen.m6923
    @naveen.m6923 2 ปีที่แล้ว +2

    Super bro apdiye full video complete paniduka bro .

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

      Coming soon bro 👍🏻.

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

    Thank you ana ❤️

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

    Really great 💯

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

      Thank you so much bro 🤩🤩

  • @teenageskincare2311
    @teenageskincare2311 หลายเดือนก่อน +1

    Bro flowchartku video podunga pls

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

    Superb

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

    its really good ,better than most of the paid courses. y u guys create a site and upload these videos for subscription??

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

      We wanted to do it for free on youtube to reach a wider audience... Thank you soo much for your comments, means a lot to us🤩🤩🤩

    • @RKARAN-zs5zn
      @RKARAN-zs5zn 2 ปีที่แล้ว +6

      @@codeio antha manasu irukke

    • @electronics797
      @electronics797 6 หลายเดือนก่อน

      Superb

    • @sivajiganesan4578
      @sivajiganesan4578 2 หลายเดือนก่อน

      U r great 😊
      U alwayz welcoming nga❤

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

    Thank you so much🥺

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

      😊😊🥳

  • @ahamedmajin2560
    @ahamedmajin2560 5 หลายเดือนก่อน +1

    I'm watching all the episode of c.but, i still don't understand what return means and why we use it.

    • @codeio
      @codeio  5 หลายเดือนก่อน +2

      Return is the output that a function gives

    • @ahamedmajin2560
      @ahamedmajin2560 5 หลายเดือนก่อน

      @@codeio gotcha bro..

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

    Well understood na👍

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

      Thank you so much 🤩🤩

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

    Thankzz bro❤

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

      🤩🤩🤩🤩🤩🤩🤩

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

      @@codeio bro unga telegram id kudunke

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

    Which software you using

  • @bgmscore4464
    @bgmscore4464 9 หลายเดือนก่อน

    Bro c++ ku vidio podunga plz

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

    Anna neega enna compiler use pandriga?

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

      CLion

  • @Srinithi-Bhuvenan
    @Srinithi-Bhuvenan ปีที่แล้ว

    Bro coding matum sollrenga thearom sollunga bro coding matum thaa explain pandrenga

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

      Ok will do..

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

    Unga compiler name enna bro

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

      C Lion

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

    ur video is good but sub is low

  • @freaknation1314
    @freaknation1314 6 หลายเดือนก่อน +1

    anna why my program isnt working
    #include
    int main() {
    int fact=1;
    int num;
    printf("enter a number: ");
    scanf("%d",&num);
    for(int i=num;i>0;i-1)
    {
    fact*=i ;
    }
    printf("%d",fact);
    }

    • @NivethaVallarasu
      @NivethaVallarasu 3 วันที่ผ่านมา

      Instead of i-1 use i- -,then it will work.