Тёмный

Palindrome program in C | Check if number or string is Palindrome | #9 Coding Bytes 

FACE Prep
Подписаться 332 тыс.
Просмотров 115 тыс.
50% 1

Опубликовано:

 

25 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 61   
@vishnumaragani
@vishnumaragani 2 года назад
Short and sweet logic explanation
@alekyareddy4086
@alekyareddy4086 2 года назад
Can we use string reverse function to check whether it is palindrome or not
@bhuvan6926
@bhuvan6926 2 года назад
Can you please write that code ..what you have assumed??....
@bhuvan6926
@bhuvan6926 2 года назад
Thank you FACE PREP♥️♥️
@Sj_54321
@Sj_54321 4 года назад
Your classes are very useful... 😇
@Jahirul-w2m
@Jahirul-w2m 3 года назад
Your teaching technique is very good and voice as well
@am_ayaan_5379
@am_ayaan_5379 2 года назад
Logic is very good thanks
@isikamaiti9116
@isikamaiti9116 2 года назад
Ma'am ,if we consider a string like "moram". So then,we should not give break in this position.Because if(m!=m), condition false ,and then break statement help to terminate the loop ,and print both are same string.
@bedantasahoo1702
@bedantasahoo1702 2 года назад
Thanks for the explanation ☺️it's very useful
@mdfaizanalam_
@mdfaizanalam_ 3 года назад
Thanks for explaining the logic
@farhanaahmmed4832
@farhanaahmmed4832 3 года назад
Your Explanation is really awesome...
@ritiks.hujwant3816
@ritiks.hujwant3816 3 года назад
Thank you for such a great explanation 💫🤩🥰
@EROFFyt
@EROFFyt 2 года назад
Thanks for the great explanation
@Jahirul-w2m
@Jahirul-w2m 3 года назад
I think this video will help at least little bit to those who will watch
@ajajhusainofficial
@ajajhusainofficial Год назад
your logic is very simple . Thank you mam
@adityakocharla
@adityakocharla 3 года назад
Tq so much this video 📷📷📷 helped me a lot to understand the concept
@erenoriginal
@erenoriginal Год назад
what is the for loop for given number is palidrome or not
@VaishnaviSingh-b8v
@VaishnaviSingh-b8v 4 дня назад
You taught the logic it really great 😢 code tho sab bate h but logic koi nhi deta thanks 🫶🏻
@pragyasharmar2104
@pragyasharmar2104 4 года назад
Had a great session
@chikkamsrinivas6118
@chikkamsrinivas6118 2 года назад
Thank u so much madam
@gowthamb12a68
@gowthamb12a68 2 года назад
Mam how to use pointers in palindrome
@ramakrishnanv3793
@ramakrishnanv3793 3 года назад
THANK YOU SO MUCH, MAM... I HAVE A DOUBT IN THAT CONCEPT AND NOW YOU CLEARED THAT MAM
@a12-j4c5v
@a12-j4c5v 3 года назад
Could u please give me the program to check wether the words in a given sentence are palindrome.if not reverse the word.print the new sentence right now ples? Fast.
@md.parvej9493
@md.parvej9493 4 года назад
Awesome class.
@krishnachhabra77
@krishnachhabra77 5 лет назад
Explaning skill 👌
@purveshpangudwale5083
@purveshpangudwale5083 4 года назад
What happen if the character is palindrome then also it will break out from for loop in 1st iteration only
@1prdas1
@1prdas1 3 года назад
If the first condition is true than it will loop through all until condition is false. But if the first or any next iteration is false it will break from loop before completion and give output as non palindrome.
@Sagarmore17
@Sagarmore17 4 года назад
Good work mam
@RisingIndiabyRSK
@RisingIndiabyRSK 5 лет назад
Awesome video
@shubham-sale
@shubham-sale 4 года назад
Nice explanation
@shubham-sale
@shubham-sale 4 года назад
Want to see more
@thulisisizwemagagula
@thulisisizwemagagula 4 года назад
Thank you So much
@flyingbomber
@flyingbomber 4 года назад
Thanks mam
@nsunandha3031
@nsunandha3031 Год назад
In this program what is the use of flag madem why you write flag Flag means madem explain mam
@Manu_V_M
@Manu_V_M 4 года назад
Thank you so much❤️👍
@rajilakshmi9081
@rajilakshmi9081 4 года назад
Awesome ya!!!
@balarajumbbalarajumb8910
@balarajumbbalarajumb8910 3 года назад
ALP to Check string is palindrome or not in ARM 7 Program one program send madi
@ajithakhil7079
@ajithakhil7079 2 года назад
your string palindrome logic is not complete. for(i=0;i
@mhdsadiqp4756
@mhdsadiqp4756 Год назад
Please provide full of the program 🙏
@wladekarek
@wladekarek 11 месяцев назад
actually there is no point in checking entire length of the string, half of it will do, it is c# but you all will get it :) static bool IsPalindrome(string text){ int len = text.Length; int halfLen = len /2; len -= 1; for(int i = 0; i < halfLen; i++){ if(text[i] != text[len - i]) return false; } return true; }
@solowalker2548
@solowalker2548 Год назад
After breaking the while loop ,The value of n would be zero
@lalayadav-n3e
@lalayadav-n3e 3 года назад
why we use flag can anyone explain
@saibashanoorbasha2962
@saibashanoorbasha2962 3 года назад
But I want in python not in C😢😢. Anyway you r looking gorgeous😍😍
@suriyaprakash5172
@suriyaprakash5172 3 года назад
If u know Concept, write any programming language it's simple.
@saibashanoorbasha2962
@saibashanoorbasha2962 3 года назад
@@suriyaprakash5172 If I know Why would I prefer to your videos bro
@ss.b.s3170
@ss.b.s3170 3 года назад
U had not initialize the rem in program
@FACEPrep
@FACEPrep 3 года назад
It's just a pseudo code buddy. But yeah you are right it has to be initialized.
@jeevansmith
@jeevansmith 3 года назад
🔥🔥
@SudyaCreator
@SudyaCreator 2 года назад
mam so cute ❤
@pranavjoshi9234
@pranavjoshi9234 4 года назад
Easiest way to understand palindrome program int main(void) { int a,b,c,d,e,f; printf("Please Enter a 5 digit number: "); scanf("%d",&a); b=a/10000; c=a/1000; d=c%10; e=a%10; f=a%100/10; if(b==e && d==f) { printf("Your number is \"palindrome\" = %d ",a); } else { printf("Your number is \"NOT\" palindrome-%d ",a); } printf("Thank you!"); return 0; }
@suchanaghosh7943
@suchanaghosh7943 Год назад
input:noon5 output:noon is palindrome. pls slove this.
@geniusboys8204
@geniusboys8204 4 года назад
I think you are wrong, break should be inside if loop
@purveshpangudwale5083
@purveshpangudwale5083 4 года назад
Ya I also think so
@muchukotasrikanth9938
@muchukotasrikanth9938 4 года назад
You are right!
@mr__rishi.1157
@mr__rishi.1157 3 года назад
❤❤❤
@FACEPrep
@FACEPrep 3 года назад
We love you too.
@balarajumbbalarajumb8910
@balarajumbbalarajumb8910 3 года назад
Plz send me mam
@pranavsharma4714
@pranavsharma4714 4 года назад
You need to practice a lot how to explain things
@thasthakir3125
@thasthakir3125 3 года назад
You need to Practice a lot how to understand things.
@thamburemash8030
@thamburemash8030 3 года назад
are you single...?
Далее
52 - PALINDROME (NUMERIC & STRING) - C PROGRAMMING
36:37
Ilkinchi hotin oberasanmi deb o’ylabman🥹😄
00:26
А вы знали что металл тонет?
00:32
На самом деле, все не просто 😂
00:45