C13: C program to reverse a number in tamil | print number reverse in turbo c

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ต.ค. 2024

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

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

    Hello Sir, yesterday I had an interview and got selected. Totally they asked me 2 coding qns but i was able to answer one qn only. Another question they have asked me to check if a number is palindrome or not. I was able to write the code by watching your videos only sir. Really amazing explanation that too i have watched this video only once but I still remember the logic because of you sir..
    Please my biggest request..
    Please continue the videos sir🙏🏻

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

      All the best

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

    Sir please continue the classes....

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

    Very helpful thanku sir

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

    Thank you sir, it is useful 👍

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

      👍🏼👍🏼

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

    Thank you sir

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

    Program Rasichu Eluthuringa athoda effect engalayum Rasika vakithu❤❤

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

      ❤️

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

      @@KaiNaatu Sir Heart shape Pattern Printing Enaku puriyala athuku program pottu explain panni upload panuga

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

    Thank you sir i got selected.... In tcs and prodapt

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

      Wow superb.. all the best sujitha..❤️

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

    Easy and superb method sir

    • @KaiNaatu
      @KaiNaatu  3 ปีที่แล้ว

      Thank you

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

    Sir how to do this program by using for loop

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

    Super sir 😀❤️

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

      Thank you..👍🏼👍🏼

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

    Superb

    • @KaiNaatu
      @KaiNaatu  3 ปีที่แล้ว

      Thank you

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

    thank u sir

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

      👍🏼👍🏼

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

    what is output for a negative input sir ............eg: -789 to output =? ,what will be the output?

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

    Sir s=s*10+r epdi vandhuchu nu sollunga sir plz

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

      Athu tan logic eh.. andha logic vacha tan concatenation of numbers aagum

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

    Sir s*10+r எழுதாம printf rem kuduthaale reverse aakume

    • @KaiNaatu
      @KaiNaatu  3 ปีที่แล้ว

      Yeah aagum but if you want to use the reversed number?? I have told this in the video..👍🏼

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

    Sir input=2430 => output=342
    Incase late degit was 0 , this method not valid sir... I'm right ??? Plz reply sir

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

      May be u done mistake while Sum *10+ reminder please check again upto N>0

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

    Sir enn 234.5 ya 234 nu aluthiringa

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

      Integer na whole numbers mattum tan irukum, fraction truncate aagirum..

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

    Sir out put mobile ya potinga ????
    Enna app sir

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

      Coding c

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

    "s" eda denote panudhu sir???

    • @KaiNaatu
      @KaiNaatu  3 ปีที่แล้ว

      The s value in this program is used to concatenate the integer values.. the initial value assigned to s is 0.. if the last digit fetched is 4, then after substituting the logic,
      s=s*10+lastdigit => 0*10+4=> 4
      Now if the next digit feched is 5, now the value of s becomes
      s=s*10+lastdigit=>4*10+5=> 45
      Hope you understand the logic..please watch the manual explanation given in the video and the previous video for better understanding..👍🏼

    • @carolineshiny4174
      @carolineshiny4174 3 ปีที่แล้ว

      @@KaiNaatu thk u sir

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

    Sir i tried this logic sir...
    Int n,p;
    Printf("enter the n value:");
    Scanf("%d",&n);
    While(n>0)
    {
    p=n%10;
    n=n/10;
    Printf ("%d",p);
    }
    }

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

      If input n=3456;
      Reverse order=6543 and if I changed printf statement as("%d
      ",p) i will get each digit in separate format...Thank you sir...

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

    Thank you sir😊