Write a C program using user-defined functions to determine whether the given string is palindrome or not
In this article, we will write a C program using user-defined functions to determine whether the given string is palindrome or not.
Palindrome means the string on reversal should be the same as the original.
Example: madam on reversal is also madam
Algorithm:
Step 1: start
Step 2: read a string A
Step 3: copy string A into B
Step 4: reverse string B
Step 5: compare A &B If A equals B to got step 6 Else goto step 7
Step 6:print given string A is palindrome Step 7:print g
Write a C program using user-defined functions to determine whether the given string is palindrome or not
#include <stdio.h> #include <string.h> void main() { char string[25], reverse_string[25] = { '\0' }; int i, length = 0, flag = 0; printf("Enter a string \n"); gets(string); for (i = 0; string[i] != '\0'; i++) { length++; } printf("The length of the string '%s' = %d\n", string, length); for (i = length - 1; i >= 0; i--) { reverse_string[length - i - 1] = string[i]; } for (flag = 1, i = 0; i < length; i++) { if (reverse_string[i] != string[i]) flag = 0; } if (flag == 1) printf("%s is a palindrome \n", string); else printf("%s is not a palindrome \n", string); }
Input:
Enter a string madam
Output:
The length of the string 'madam' = 5 madam is a palindrome
Related C Programs with Output
- Write a C Program to Find the Sum and Average of Three Numbers
- Write a C Program to Find the Sum of Individual Digits of Positive Integer
- Write a C Program to Generate the First N Terms of the Sequence
- Write a C Program to Generate All Prime Numbers Between 1 and N
- Write a C Program to Check Whether Given Number Is Armstrong Number or Not
- Write a C program to evaluate algebraic expression (ax+b)/(ax-b)
- Write a C program to check whether a given number is a perfect number or Not
- Write a C program to check whether a number is strong number or not
- Write a C program to find the roots of a quadratic equation
- Write a C program to find the factorial of a given integer using a non-recursive function
- Write a C program to find the factorial of a given integer using a recursive function
- Write a C program to find the GCD of two given integers by using the recursive function
- Write a C program to find the GCD of two given integers using a non-recursive function
- Write a C program to find both the largest and smallest number in a list of integers
- Write a C Program to Sort the Array in an Ascending Order
- Write a C Program to find whether the given matrix is symmetric or not
- Write a C program to perform the addition of two matrices
- Write a C Program That Uses Functions to Perform Multiplication Of Two Matrices
- Write a C program to use a function to insert a sub-string in to a given main string from a given position
- To delete n Characters from a given position in a given string
- Write a C program using user-defined functions to determine whether the given string is palindrome or not
- Write a C program to count the number of lines, words, and characters in a given text
- Write a C program to find the length of the string using Pointer
- Write a C program to Display array elements using calloc( ) function
- Write a C Program to Calculate Total and Percentage Marks of a Student Using Structure
- Write a C Program to Display the Contents of a File
- Write a C program to copy the contents of one file to another
Comments
Post a Comment