No video

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

  Рет қаралды 829,722

Naresh i Technologies

Naresh i Technologies

Күн бұрын

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 жыл бұрын
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
@k.sshashikala3915
@k.sshashikala3915 5 жыл бұрын
You have to do the operation with temp inside while loop
@existingstars3665
@existingstars3665 3 жыл бұрын
Binary to decimal conversion c programming can you please teach
@karthikgamers7069
@karthikgamers7069 2 жыл бұрын
Yes
@--Asha--
@--Asha-- 6 жыл бұрын
Noone can explain like Mr.Srinivas.He is so good in explaining things.
@ebrimadem5287
@ebrimadem5287 5 жыл бұрын
Yeah
@oproyalkings3048
@oproyalkings3048 3 жыл бұрын
Who is srinivas
@harideep3
@harideep3 3 жыл бұрын
@@oproyalkings3048 MA inti pakkana punugulu ammutaadu
@RidiculousAman
@RidiculousAman 3 жыл бұрын
@@oproyalkings3048 he is sir who is teaching, fool🤦🏻‍♂️
@shaikahmadnawaz118
@shaikahmadnawaz118 3 жыл бұрын
@@harideep3 🤭
@goyaldeekshant
@goyaldeekshant 4 жыл бұрын
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 жыл бұрын
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
@rockingbalu3652
@rockingbalu3652 6 жыл бұрын
One of best tutorial i have never seen
@ankittiwari5710
@ankittiwari5710 5 жыл бұрын
Srinivas sir explains program in a very easier and understandable way
@jhumurshill8620
@jhumurshill8620 10 ай бұрын
You're best teacher❤.. Love from Bangladesh.
@meghanachittoju7647
@meghanachittoju7647 5 жыл бұрын
really ur explation is awesome sir .no one can explain like this .thank u so much sir
@kuntumallaleela7712
@kuntumallaleela7712 5 жыл бұрын
Whoever see this getting easily tq for uploading sir
@sureshsubramaniyan3201
@sureshsubramaniyan3201 4 жыл бұрын
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.
@jozz4936
@jozz4936 3 жыл бұрын
Your are good teacher to teach student easily understand 👍
@debapriyaroy1498
@debapriyaroy1498 5 жыл бұрын
Really helpful sir, can get the codes for string palindrome
@sudarshanmhaisdhune1039
@sudarshanmhaisdhune1039 3 жыл бұрын
Such a great explanation Shrinivas sir!
@shaileshthorat3928
@shaileshthorat3928 4 жыл бұрын
Ekdum Sahi tarike se samjhaya sir 👍👍❤️❤️❤️
@geethag6229
@geethag6229 6 жыл бұрын
Sir give brief explanation abt Advanced C version frequent qn facing in interview..
@subhu143
@subhu143 4 жыл бұрын
Yes I want also
@-NGayathri-cc8dq
@-NGayathri-cc8dq 4 жыл бұрын
S me too
@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.
@parashualwaysat3811
@parashualwaysat3811 5 жыл бұрын
Soo good please upload some more interview programs
@20_SinManya
@20_SinManya 5 жыл бұрын
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
@sivamandadi4691
@sivamandadi4691 5 жыл бұрын
Always we starts a program with#includ but in this??
@VijayKumar-cn5ts
@VijayKumar-cn5ts 7 жыл бұрын
Thanks You Srinivas, very informative session
@prabhatbhalla
@prabhatbhalla 4 жыл бұрын
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?
@karanvedi6779
@karanvedi6779 2 жыл бұрын
Very helpfull sir,,thank you🙏🙏
@peepee.poopoo
@peepee.poopoo 7 жыл бұрын
short and easy to understand, good work 👍
@nehalokalwar9258
@nehalokalwar9258 3 жыл бұрын
Thanks for making this video....its very helpful sir....awesome teaching
@mustakahmad6565
@mustakahmad6565 Жыл бұрын
Very nice explanation method for easier to understand.
@lalithasingampalli5173
@lalithasingampalli5173 5 жыл бұрын
Any student need a teacher like u sir
@SmartProgramming
@SmartProgramming 6 жыл бұрын
good sir, way of explanation is really awesome, best wishes 👍👍
@jainulabdeen9119
@jainulabdeen9119 6 жыл бұрын
sir your teaching method is simple ..it's really help the beginers ,like me..thanking you sir.
@mamillamounika728
@mamillamounika728 6 жыл бұрын
Super explanation.....sir
@MaheshBabu-uj3jl
@MaheshBabu-uj3jl 2 жыл бұрын
n=temp; // it is not needed we can write directly if(temp==sum) condition
@sumitaasharma2823
@sumitaasharma2823 5 жыл бұрын
Sir ur awesome and very helpful tooo
@sawshubh5004
@sawshubh5004 3 жыл бұрын
no need to recollect n value we can directly compare temp == sum just saying btw great tutorial.
@ranjeetkaur7829
@ranjeetkaur7829 4 жыл бұрын
Thank you soo much ,now I get to know how I find no.is palindrome
@jayapavithra4762
@jayapavithra4762 5 жыл бұрын
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
@prabhanjandesai4292
@prabhanjandesai4292 5 жыл бұрын
Sir nice teaching I prefer ur teaching over our teachers
@harcharansingh1997
@harcharansingh1997 4 жыл бұрын
Sir I have a problem here how can we know that in this programe sum=sum×10+r
@jayhokte7234
@jayhokte7234 2 жыл бұрын
Bhai agr koii v number completely divide nh hota h toh Hume use completely divisible bnane k liye agr usme reminder add krde toh obvious si baat h vo divisible ho jaayega n so for making it completely divisible we add remainder aur rhi baat* 10 ki toh jb hum single digit m convert krne k liye 10 se divide kr rhe the toh vapas original value bnane k liye 10 se hi multiply Karna pdega n : Let's take an example : when we divide 48 / 5 = we get remainder 3 and if we subtract 3 From 48 or we add 3 in 45 we get completely divisible..hope you understand what I'm trying to said..
@leelavathir3039
@leelavathir3039 3 жыл бұрын
V SD initialize temp=n; And if(temp==sum)
@foodandlifestylee
@foodandlifestylee 2 жыл бұрын
Can you say is this code for ...(string is palindrome or not with library functions or without library functions)
@anshdholakia714
@anshdholakia714 4 жыл бұрын
sir can we put n==sum in the condition of the while loop?
@boy.54
@boy.54 Жыл бұрын
Such a great explanation...thank u sir..
@ganeshjaggineni4097
@ganeshjaggineni4097 2 жыл бұрын
NICE SUPER EXCELLENT MOTIVATED
@khush07
@khush07 2 жыл бұрын
You explained this really well , thankyou soo much.
@bhaveshchoudhary3353
@bhaveshchoudhary3353 3 жыл бұрын
thankyou sir i understand very easelyyyyyyy
@siddheshpatil509
@siddheshpatil509 2 жыл бұрын
Thanks sir for your efforts......
@learningmaths786
@learningmaths786 4 жыл бұрын
Super way of teaching
@bharat3827
@bharat3827 2 жыл бұрын
Super explanation👍👍
@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.
@NKADAESWAR
@NKADAESWAR 2 жыл бұрын
Sir ,in if condition we need to compare temp variable not 'n'
@sailakshminasina7019
@sailakshminasina7019 5 жыл бұрын
Sir can you explain about , How to reverse and add a number until we get the palindrome number in c language ??
@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
@bhasurumadhavi1398
@bhasurumadhavi1398 2 жыл бұрын
Nice explanation sir
@vikaspuranik5425
@vikaspuranik5425 2 жыл бұрын
Wonderful explanation, Thanks 😊
@madhuvajjarala9723
@madhuvajjarala9723 3 жыл бұрын
Super explanation sir
@chetlaabhilash
@chetlaabhilash 2 жыл бұрын
Sir I have a one doubt I.e u know all c programming Why do not join in compami
@manibalan9633
@manibalan9633 7 жыл бұрын
Thank for given your knowledge sir
@nehamanral4281
@nehamanral4281 3 жыл бұрын
very helpful thnk you sir
@madhurimadas9635
@madhurimadas9635 4 жыл бұрын
Sir, when to use while loop and when to use for loop? please reply
@nageswarankuppa2819
@nageswarankuppa2819 4 жыл бұрын
Both are doing the same work. If you have to work with more loops..... Then use while as the first loop and jse for loop for rest others
@chitranshukashyap9050
@chitranshukashyap9050 3 жыл бұрын
if yuhh have an incremet or decrement in your program then use for loop else use while
@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😊😊😊😊
@aio1549
@aio1549 3 жыл бұрын
So nice of you sir. Thank you so much
@bindubindu7208
@bindubindu7208 2 жыл бұрын
Its nice explanation but comments hiding last two lines of programming it is little messy
@meghnabiswas6666
@meghnabiswas6666 5 жыл бұрын
thanks a lot sir. its really helpful....
@sanjaykhandelwal1612
@sanjaykhandelwal1612 2 жыл бұрын
Palindrome is a type of work which is same meaning for reading alphabet forward and backward
@-M-Viswas
@-M-Viswas 4 жыл бұрын
nice explination sir
@tapanjeetroy8266
@tapanjeetroy8266 6 жыл бұрын
thanks a lot sir for your support...
@jessyvlogs29
@jessyvlogs29 6 жыл бұрын
In the code lastly we can directly compare with temp== sum, no need to store the value (n= temp).. unnecessary code extra one line right? Please follow good coding standards to improve the performance of program always! Thanks.
@kaustubhlangade5420
@kaustubhlangade5420 5 жыл бұрын
The way of explanation is too good!!!!!
@vijaygaikwad7866
@vijaygaikwad7866 3 жыл бұрын
Thankyou sir helped me alot
@prathyusharaju7596
@prathyusharaju7596 4 жыл бұрын
Superb sir your are just awesome sir
@hanadotexe
@hanadotexe 4 жыл бұрын
you are brilliant! thank you very much.
@hshshq
@hshshq 3 жыл бұрын
*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
@chanchalrajput5497
@chanchalrajput5497 6 жыл бұрын
Thank-you so much sir
@nithinanto7107
@nithinanto7107 3 жыл бұрын
What is the use of, read n; statement
@arthbarbate742
@arthbarbate742 8 ай бұрын
naresh institute of technology
@sukhenhalder4u
@sukhenhalder4u 2 жыл бұрын
You're great sir
@AnilSingh-pv3uu
@AnilSingh-pv3uu 5 жыл бұрын
excellent explained!!!!!!!!!! superb
@vandamme5487
@vandamme5487 3 жыл бұрын
Sir you helped me alot🙏
@venkateshdammala7
@venkateshdammala7 4 жыл бұрын
Sir, but we did declare any temp variable during perfect number checking but here we are declaring temp variable why sir..just give me reason ??.. or else we are just using temp variable for safe .
@binaryphil94
@binaryphil94 2 жыл бұрын
Very helpful
@AllinOne-kp8bp
@AllinOne-kp8bp Жыл бұрын
Clear explanation ❤️
@HelpUtv
@HelpUtv 6 жыл бұрын
#include #include int main() { int n,r,sum=0,temp; printf("enter your 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("it is a palindrome"); else printf("not a palindrome"); getch(); }
@abhignanrayaprolu6403
@abhignanrayaprolu6403 5 жыл бұрын
Srinivas sir meeru thopu sirr
@mathstitude3914
@mathstitude3914 4 жыл бұрын
nicely described #mathstitude #palindromenumber
@35.sonikumari
@35.sonikumari 3 жыл бұрын
Hloo sir I need a program on palindrome string ,, here I can understand ur way .. 🥺🥺so can yuh please understood me palindrome string please 🥺
@SK-rx1rn
@SK-rx1rn 4 жыл бұрын
Make on fibonacci series and factorial using function in c language
@keepitbape
@keepitbape 4 жыл бұрын
Great! Thank you very much!
@PreethiVarmaVlogs
@PreethiVarmaVlogs 6 жыл бұрын
Sir,can I know the code for string palindrome
@karthikeyan-lv6wu
@karthikeyan-lv6wu 5 жыл бұрын
In string palindrome we need to include string.h header file and some string handling function such as strcpy(str2,str1) this is used to copy the string str1 to str2 , strrev(str2) this is used to reverse the string that we have copied above, strcmp(str1,str2)==0 it is used to compare Strcmp only gives 1 and 0 as output if the given string and reversed string is equal then it gives 0. put Strcmp in IF condition
@divyachaudhary1154
@divyachaudhary1154 5 жыл бұрын
First find the reverse using looops and thn compare result with input string
@nirmalbirla6072
@nirmalbirla6072 3 жыл бұрын
switch case program on employees department, designation , employee code
@allamrajumadhuri4748
@allamrajumadhuri4748 4 жыл бұрын
Which complier are you using to compile this program sir
@EBKCS_KOMALSHARMA
@EBKCS_KOMALSHARMA 4 жыл бұрын
u r best sir
@rparthibanfighter5899
@rparthibanfighter5899 3 жыл бұрын
Why u should use only 10 in reverse statement n in sum statements
@shaikmehatab9918
@shaikmehatab9918 4 жыл бұрын
sir explain us some numbers programs like kaprekar number etc.,
@aswanthrs9104
@aswanthrs9104 6 жыл бұрын
super class sir
@SudiptoMW7
@SudiptoMW7 3 жыл бұрын
Explained well
@predatorgaming895
@predatorgaming895 5 жыл бұрын
Do video about matrix addition
@nithishakanneti3063
@nithishakanneti3063 5 жыл бұрын
Can any explain the logic sum =sum×10+r
@tanushakodati2355
@tanushakodati2355 5 жыл бұрын
Nithisha Kanneti we've multiplied sum to 10 because reminder should be added to ones position
@shashankda2002
@shashankda2002 3 жыл бұрын
Thanks sir....🙇
@snigdhamohanty7303
@snigdhamohanty7303 4 жыл бұрын
thank u sir for ur help....
@alokkumarnyati
@alokkumarnyati 2 жыл бұрын
thanks a lot.... it was easy😍
@BrowseOnIncognito
@BrowseOnIncognito 5 жыл бұрын
Nice sir, can you made video for keyword or not.
@jaisonjohn5572
@jaisonjohn5572 3 жыл бұрын
Very well explained ❤️
Prime Number Program in C | C Language Tutorial
4:46
Naresh i Technologies
Рет қаралды 1 МЛН
52 - PALINDROME (NUMERIC & STRING) - C PROGRAMMING
36:37
Sundeep Saradhi Kanthety
Рет қаралды 108 М.
The Joker kisses Harley Quinn underwater!#Harley Quinn #joker
00:49
Harley Quinn with the Joker
Рет қаралды 40 МЛН
这三姐弟太会藏了!#小丑#天使#路飞#家庭#搞笑
00:24
家庭搞笑日记
Рет қаралды 118 МЛН
WILL IT BURST?
00:31
Natan por Aí
Рет қаралды 40 МЛН
C Array - Part 1 | C Language Tutorial
17:33
Naresh i Technologies
Рет қаралды 1,4 МЛН
Recursion in C Functions | C Language Tutorial
14:33
Naresh i Technologies
Рет қаралды 826 М.
Fastest Way to Learn ANY Programming Language: 80-20 rule
8:24
Sahil & Sarra
Рет қаралды 840 М.
How to: Work at Google - Example Coding/Engineering Interview
24:02
Life at Google
Рет қаралды 7 МЛН
reverse of a number in c|c program to print reverse of a number
11:18
Sudhakar Atchala
Рет қаралды 91 М.
Types of the Storage Classes in C |  C Language Tutorial
16:59
Naresh i Technologies
Рет қаралды 315 М.
Control Statements in C - for loop | C Language Tutorial
17:31
Naresh i Technologies
Рет қаралды 773 М.
5 JavaScript Concepts You HAVE TO KNOW
9:38
James Q Quick
Рет қаралды 1,4 МЛН
Learn Java in 14 Minutes (seriously)
14:00
Alex Lee
Рет қаралды 4,7 МЛН
The Joker kisses Harley Quinn underwater!#Harley Quinn #joker
00:49
Harley Quinn with the Joker
Рет қаралды 40 МЛН