Answers for "how to check palindrome in c"

C
3

check is number is palindrome in C

#include <stdio.h>
#include <conio.h>

void main()
{

    int n,i,r=0;
    
    printf("Enter a number: ");
    scanf("%d",&n);
    
    for(i=n;i!=0;i)
    {
        r=r*10;
        r=r+ i%10;
        i=i/10;
    }
    
    if(r==n)
        printf("palindrome");
    else
        printf("Not palindrome");
}
Posted by: Guest on June-24-2021
1

check if a string is palindrome cpp

// Check whether the string is a palindrome or not.
#include <bits/stdc++.h>

using namespace std;

int main(){
    string s;
    cin >> s;
    
    int l = 0;
    int h = s.length()-1;

    while(h > l){
        if(s[l++] != s[h--]){
            cout << "Not a palindrome" << endl;
            return 0;
        }
    }
    cout << "Is a palindrome" << endl;
    return 0;

}
Posted by: Guest on January-23-2021
1

check if string is palindrome in c

// this is for string

#include <stdio.h>
#include <string.h>

void main()
{
  char a[100], b[100];

  printf("Enter a string to check if it's a palindrome: ");
  gets(a);

  strcpy(b, a);

  if (strcmp(a, b) == 0)
    printf("\nThe string is palindrome.\n");

  else
    printf("\nThe string is not palindrome.\n");

  getch();
}
Posted by: Guest on June-23-2021
0

check palindrome

bool isPlaindrome(string s)
	{
	   int i=0;
	   int j=s.length()-1;
	   while(i<j)
	   {
	       if(s[i]==s[j])
	       {i++;
	   j--;}
	   else break;
	   }
	   if (i==j || i>j) return 1;
	   else return 0;
	}
Posted by: Guest on October-23-2020
0

palindrome in c using function

#include <stdio.h>
#include <conio.h>

int palindrome (int num);

void main()
{
    int n, ret;
    printf("Enter the number: ");
    scanf("%d",&n);

    ret = palindrome(n);

    if (ret == n)
        printf("\nPalindrome\n");
    else
        printf("\nNot Palindrome\n");
}

int palindrome(int num)
{
    int rem, rev=0;

    while (num!=0)
    {
        rem = num % 10;
        rev = rev * 10 + rem;
        num /= 10;
    }

    return rev;
}
Posted by: Guest on June-23-2021

Code answers related to "how to check palindrome in c"

Code answers related to "C"

Browse Popular Code Answers by Language