1.

Write code to check a String is palindrome or not?

Answer»

PALINDROME program in C language

Palindrome program in C language#include

#include

int main()

int main(){

int main(){char a[100], B[100];

printf("Enter a string to check if it is a palindrome\n");

GETS(a);

STRCPY(b, a); // Copying INPUT string.



Discussion

No Comment Found