Yahoo India Web Search

Search results

  1. Write a function to determine whether a given number is a palindrome. A palindrome number is a number that remains the same when its digits are reversed. For example, 525. Return 1 if the number is a palindrome, otherwise return 0.

  2. Apr 18, 2024 · For example, “abba” is a palindrome because the reverse of “abba” will be equal to “abba” so both of these strings are equal and are said to be a palindrome, but “abbc” is not a palindrome. In this article, we will see a simple program to check whether the string is palindrome or not.

  3. Palindrome program in C. Palindrome number in c: A palindrome number is a number that is same after reverse. For example 121, 34543, 343, 131, 48984 are the palindrome numbers.

  4. Sep 26, 2023 · For example, 12321 after reversing is 12321, so it is a palindrome number. But the number 1232 after reversing is 2321, so it is not a palindrome number. In this article, we will look at the C program to check whether a number is a palindrome or not.

  5. Learn how to write an efficient C program that checks if a given string is a palindrome. A palindrome is a string that is the same when read in both forward and backward directions.

  6. Palindrome in C. C program to check if a string or a number is palindrome or not. A palindrome string is one that reads the same backward as well as forward. It can be of odd or even length. A palindrome number is a number that is equal to its reverse.

  7. Jan 22, 2024 · Print the arranged positions of characters to make palindrome; Check if a given string is a rotation of a palindrome; Make largest palindrome by changing at most K-digits; Minimum number of deletions to make a string palindrome; Find longest palindrome formed by removing or shuffling chars from string; Print all palindrome permutations of a string

  1. People also search for