Palindrome Number Program in C | C Language Tutorial | Mr. Srinivas

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024
  • Palindrome Number Program in C
    C Language Tutorial Videos | Mr. Srinivas
    ** For Online Training Registration: goo.gl/r6kJbB ? Call: +91-8179191999
    ? Visit Our Website for Classroom Training:
    nareshit.in/c-...
    ? For Online Training:
    nareshit.com/c...
    --------------------------
    ? About NareshIT:
    "Naresh IT is having 14+ years of experience in software training industry and the best Software Training Institute for online training, classroom training, weekend training, corporate training of Hadoop, Salesforce, AWS, DevOps, Spark, Data Science, Python, Tableau, RPA ,Java, C#.NET, ASP.NET, Oracle, Testing Tools, Silver light, Linq, SQL Server, Selenium, Android, iPhone, C Language, C++, PHP and Digital Marketing in USA,Hyderabad, Chennai and Vijayawada,Bangalore India which provides online training across all the locations
    --------------------------
    ? Our Online Training Features:
    1.Training with Real-Time Experts
    2.Industry Specific Scenario’s
    3.Flexible Timings
    4.Soft Copy of Material
    5. Share Videos of each and every session.
    --------------------------
    Please write back to us at us.training@nareshit.com/online@nareshit.com or Call us at USA:
    +1404-232-9879 or India: +918179191999
    * Check The Below Links*
    ? For Course Reg: goo.gl/r6kJbB
    ? Subscribe to Our Channel: goo.gl/q9ozyG
    ? Circle us on G+: plus.google.co...
    ? Like us on Facebook: / nareshit
    ? Follow us on Twitter: / nareshitech
    ? Follow us on Linkedin:
    / naresh-i-technologies
    ? Follow us on Instagram: / nareshitech

Комментарии • 314

  • @NareshIT
    @NareshIT  5 лет назад +35

    Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL

  • @--Asha--
    @--Asha-- 6 лет назад +187

    Noone can explain like Mr.Srinivas.He is so good in explaining things.

  • @rockingbalu3652
    @rockingbalu3652 6 лет назад +40

    One of best tutorial i have never seen

  • @ankittiwari5710
    @ankittiwari5710 5 лет назад +13

    Srinivas sir explains program in a very easier and understandable way

  • @goyaldeekshant
    @goyaldeekshant 4 года назад +30

    Here is the complete code:
    #include
    main()
    {
    int n,r,sum=0;
    printf("enter the value of n: ");
    scanf("%d",&n);
    int temp=n;
    while(n>0)
    {
    r=n%10;
    sum=sum*10+r;
    n=n/10;
    }
    if(sum==temp)
    printf("the number %d is a palindrome",temp);
    else
    printf("the number %d is not palindrome",temp);
    }

    • @foodandlifestylee
      @foodandlifestylee 2 года назад +1

      Can you say is this code for ...(string is palindrome or not with library functions or without library functions)

    • @goyaldeekshant
      @goyaldeekshant 2 года назад

      @@foodandlifestylee it is without library function

    • @mehathabegam6262
      @mehathabegam6262 2 года назад

      Tqs

  • @meghanachittoju7647
    @meghanachittoju7647 5 лет назад +9

    really ur explation is awesome sir .no one can explain like this .thank u so much sir

  • @jhumurshill8620
    @jhumurshill8620 11 месяцев назад +1

    You're best teacher❤..
    Love from Bangladesh.

  • @sureshsubramaniyan3201
    @sureshsubramaniyan3201 4 года назад +2

    I have seen more video about palindrome but can not understand the concept ..After watching your video able to understand the logic and special thanks for your concise explanation and if possible please make a video using eclipse and share with us.

  • @kuntumallaleela7712
    @kuntumallaleela7712 6 лет назад +7

    Whoever see this getting easily tq for uploading sir

  • @sudarshanmhaisdhune1039
    @sudarshanmhaisdhune1039 3 года назад +4

    Such a great explanation Shrinivas sir!

  • @debapriyaroy1498
    @debapriyaroy1498 5 лет назад +10

    Really helpful sir, can get the codes for string palindrome

  • @parashualwaysat3811
    @parashualwaysat3811 5 лет назад +8

    Soo good please upload some more interview programs

  • @jozz4936
    @jozz4936 4 года назад +1

    Your are good teacher to teach student easily understand 👍

  • @karanvedi6779
    @karanvedi6779 2 года назад +1

    Very helpfull sir,,thank you🙏🙏

  • @mustakahmad6565
    @mustakahmad6565 Год назад

    Very nice explanation method for easier to understand.

  • @VijayKumar-cn5ts
    @VijayKumar-cn5ts 7 лет назад +4

    Thanks You Srinivas, very informative session

  • @SmartProgramming
    @SmartProgramming 6 лет назад +1

    good sir, way of explanation is really awesome, best wishes 👍👍

  • @lalithasingampalli5173
    @lalithasingampalli5173 6 лет назад

    Any student need a teacher like u sir

  • @nehalokalwar9258
    @nehalokalwar9258 4 года назад +1

    Thanks for making this video....its very helpful sir....awesome teaching

  • @shaileshthorat3928
    @shaileshthorat3928 4 года назад +2

    Ekdum Sahi tarike se samjhaya sir 👍👍❤️❤️❤️

  • @boy.54
    @boy.54 Год назад

    Such a great explanation...thank u sir..

  • @sumitaasharma2823
    @sumitaasharma2823 6 лет назад +4

    Sir ur awesome and very helpful tooo

  • @mamillamounika728
    @mamillamounika728 6 лет назад +3

    Super explanation.....sir

  • @geethag6229
    @geethag6229 6 лет назад +10

    Sir give brief explanation abt Advanced C version frequent qn facing in interview..

  • @jainulabdeen9119
    @jainulabdeen9119 6 лет назад

    sir your teaching method is simple ..it's really help the beginers ,like me..thanking you sir.

  • @marshallyt3936
    @marshallyt3936 2 года назад

    #include
    void main()
    {
    int n, r, temp, sum=0;
    printf("Enter any number: ");
    scanf("%d",&n);
    temp=n;
    while(n>0)
    {
    r=n%10;
    sum=sum*10+r;
    n=n/10;
    }
    n=temp;
    if(n==sum)
    printf("The number is palindrome number");
    else
    printf("The number is not palindrome number");
    }
    program for palindrome number, hope you all enjoy.

  • @ganeshjaggineni4097
    @ganeshjaggineni4097 2 года назад

    NICE SUPER EXCELLENT MOTIVATED

  • @bhaveshchoudhary3353
    @bhaveshchoudhary3353 3 года назад

    thankyou sir i understand very easelyyyyyyy

  • @bharat3827
    @bharat3827 2 года назад

    Super explanation👍👍

  • @khush07
    @khush07 2 года назад

    You explained this really well , thankyou soo much.

  • @vijaygaikwad7866
    @vijaygaikwad7866 3 года назад

    Thankyou sir helped me alot

  • @siddheshpatil509
    @siddheshpatil509 2 года назад

    Thanks sir for your efforts......

  • @learningmaths786
    @learningmaths786 5 лет назад

    Super way of teaching

  • @nehamanral4281
    @nehamanral4281 3 года назад

    very helpful thnk you sir

  • @vikaspuranik5425
    @vikaspuranik5425 2 года назад

    Wonderful explanation, Thanks 😊

  • @bhasurumadhavi1398
    @bhasurumadhavi1398 3 года назад

    Nice explanation sir

  • @madhuvajjarala9723
    @madhuvajjarala9723 3 года назад

    Super explanation sir

  • @aio1549
    @aio1549 3 года назад

    So nice of you sir. Thank you so much

  • @SudiptoMW7
    @SudiptoMW7 4 года назад

    Explained well

  • @sawshubh5004
    @sawshubh5004 3 года назад

    no need to recollect n value
    we can directly compare temp == sum
    just saying btw great tutorial.

  • @ranjeetkaur7829
    @ranjeetkaur7829 4 года назад +1

    Thank you soo much ,now I get to know how I find no.is palindrome

  • @-M-Viswas
    @-M-Viswas 4 года назад

    nice explination sir

  • @prabhanjandesai4292
    @prabhanjandesai4292 6 лет назад

    Sir nice teaching I prefer ur teaching over our teachers

  • @prakashrai7936
    @prakashrai7936 5 лет назад

    love you sir g, slight pronunciation issue but concept is very clear,pronunciation of remainder not reminder,hoping you will not mind,its with good faith.

  • @sukhenhalder4u
    @sukhenhalder4u 2 года назад

    You're great sir

  • @binaryphil94
    @binaryphil94 2 года назад

    Very helpful

  • @prathyusharaju7596
    @prathyusharaju7596 5 лет назад

    Superb sir your are just awesome sir

  • @vittalpatroti9739
    @vittalpatroti9739 5 лет назад

    hlo sir, ur explaination is understanding and good and plz make the videos on programes of diploma c language ........

  • @md.jamilkhan8326
    @md.jamilkhan8326 6 лет назад

    Very nice explanation Sir😊😊😊😊

  • @AllinOne-kp8bp
    @AllinOne-kp8bp 2 года назад

    Clear explanation ❤️

  • @jstar2135
    @jstar2135 2 года назад

    Thank you sir.

  • @meghnabiswas6666
    @meghnabiswas6666 5 лет назад +1

    thanks a lot sir. its really helpful....

  • @bindubindu7208
    @bindubindu7208 2 года назад

    Its nice explanation but comments hiding last two lines of programming it is little messy

  • @AnilSingh-pv3uu
    @AnilSingh-pv3uu 6 лет назад

    excellent explained!!!!!!!!!!
    superb

  • @kaustubhlangade5420
    @kaustubhlangade5420 5 лет назад

    The way of explanation is too good!!!!!

  • @EBKCS_KOMALSHARMA
    @EBKCS_KOMALSHARMA 4 года назад

    u r best sir

  • @vandamme5487
    @vandamme5487 3 года назад

    Sir you helped me alot🙏

  • @shashank_d_a
    @shashank_d_a 3 года назад

    Thanks sir....🙇

  • @hanadotexe
    @hanadotexe 4 года назад

    you are brilliant! thank you very much.

  • @20_SinManya
    @20_SinManya 5 лет назад +8

    I have one doubt: Is '1001' is a palindrome (Note the single quotes before answering)?It would be very nice if you can show the program using strings.

    • @suvin4842
      @suvin4842 2 года назад

      It's a character

  • @mathstitude3914
    @mathstitude3914 4 года назад

    nicely described
    #mathstitude
    #palindromenumber

  • @dalaldalal2451
    @dalaldalal2451 2 года назад

    sir you explaining very good, but this lecture I understand till 4:38. I don't understand why temp = n, please can you explain ? thanks.

    • @siddhant2002
      @siddhant2002 2 года назад

      At the end of the loop, n value will be change to zero, so how will you compare the orignal n value with new sum value ? so declare new (temp) variable and copy the value into that new (temp) variable, we are not performing any operation with that new (temp) variable so it won't change, we can now compare the value

  • @manibalan9633
    @manibalan9633 7 лет назад +2

    Thank for given your knowledge sir

  • @leelavathir3039
    @leelavathir3039 3 года назад

    V SD initialize temp=n;
    And if(temp==sum)

  • @manjulamanju9344
    @manjulamanju9344 5 лет назад

    Very good

  • @hithesh8228
    @hithesh8228 3 года назад

    Thank you

  • @alokkumarnyati
    @alokkumarnyati 3 года назад

    thanks a lot.... it was easy😍

  • @snigdhamohanty7303
    @snigdhamohanty7303 5 лет назад

    thank u sir for ur help....

  • @tapanjeetroy8266
    @tapanjeetroy8266 6 лет назад +1

    thanks a lot sir for your support...

  • @prabhatbhalla
    @prabhatbhalla 4 года назад +1

    shouldn,t we store the temp value before the while loop? because if we do after the while loop, then temp is also holding the last value of n which is 0?

  • @prathameshsarode8004
    @prathameshsarode8004 3 года назад

    Thank you so much sir❤

  • @blaze9558
    @blaze9558 3 года назад

    Very helpful 🙂

  • @shijijoy8234
    @shijijoy8234 4 года назад

    Thank u sir

  • @sanjaykhandelwal1612
    @sanjaykhandelwal1612 2 года назад

    Palindrome is a type of work which is same meaning for reading alphabet forward and backward

  • @keepitbape
    @keepitbape 4 года назад

    Great! Thank you very much!

  • @nehatomar1182
    @nehatomar1182 2 года назад

    Thankuu...sir😊

  • @g.subarao9006
    @g.subarao9006 5 лет назад

    Tq sir

  • @aswanthrs9104
    @aswanthrs9104 6 лет назад +2

    super class sir

  • @yusufkaraagac5761
    @yusufkaraagac5761 3 года назад

    thanks

  • @abhignanrayaprolu6403
    @abhignanrayaprolu6403 5 лет назад

    Srinivas sir meeru thopu sirr

  • @MaheshBabu-uj3jl
    @MaheshBabu-uj3jl 2 года назад

    n=temp; // it is not needed we can write directly if(temp==sum) condition

  • @jaisonjohn5572
    @jaisonjohn5572 3 года назад

    Very well explained ❤️

  • @ankitkumarojha7510
    @ankitkumarojha7510 2 года назад

    THnk u sir

  • @sivamandadi4691
    @sivamandadi4691 5 лет назад

    Always we starts a program with#includ but in this??

  • @Koushik985
    @Koushik985 4 года назад

    nice content sir

  • @chetlaabhilash
    @chetlaabhilash 2 года назад

    Sir I have a one doubt
    I.e u know all c programming
    Why do not join in compami

  • @foodandlifestylee
    @foodandlifestylee 2 года назад

    Can you say is this code for ...(string is palindrome or not with library functions or without library functions)

  • @akki4790
    @akki4790 5 лет назад

    Masth chepparu

  • @kovidpatelmidivelli2414
    @kovidpatelmidivelli2414 2 года назад

    Awesome Naresh Jiiiii999iiiii

  • @BrowseOnIncognito
    @BrowseOnIncognito 5 лет назад

    Nice sir, can you made video for keyword or not.

  • @anandakrishna3442
    @anandakrishna3442 7 лет назад

    U r wonderful sir👍👍👍👍👍👍👍👍👍👍👍👍👍

  • @arthbarbate742
    @arthbarbate742 9 месяцев назад

    naresh institute of technology

  • @cosmofacts8194
    @cosmofacts8194 4 года назад

    You are great😍😍

  • @sriramsriram9144
    @sriramsriram9144 6 лет назад

    Excellent

  • @sourabhpaul2763
    @sourabhpaul2763 6 лет назад

    i am very impressed

  • @vsroshini7464
    @vsroshini7464 7 лет назад

    awesome sir
    2mor for me xam it is use full

  • @jayapavithra4762
    @jayapavithra4762 5 лет назад +1

    Sir,if u r storing n value to temp variable,then the value n will be transmitted to temp variable.how can we able to process the underlying while loop?.pls tell me how this process is undergoing?

    • @karthikeyan-lv6wu
      @karthikeyan-lv6wu 5 лет назад

      Watch clearly, temp is used to retrieve the original variable that the user passes and it is retrieved as temp=n and temp didn't used inside the while loop

  • @hshshq
    @hshshq 3 года назад +1

    *Check string palindrome or not*
    int m,i;
    Char str[20] ,ch;
    Printf("enter a string :");
    gets(str);
    m=Strlen(str);
    for(i=0;i

  • @shaileshthorat3928
    @shaileshthorat3928 4 года назад

    You're great sir !!!

  • @studentboy1998
    @studentboy1998 5 лет назад

    Great sir