HomeC ProgrammingC Program to Check if a String is a Palindrome without using Built-in Function

C Program to Check if a String is a Palindrome without using Built-in Function

This C program checks whether a given string is a palindrome or not without using any built-in string reversal function.

Problem Statement

A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward, disregarding spaces, punctuation, and capitalization.

Requirements:

  1. The program should prompt the user to enter a string.
  2. It should then determine whether the entered string is a palindrome.
  3. The program should perform the palindrome check without using any built-in functions.
  4. The comparison should be case-sensitive, meaning uppercase and lowercase letters should be treated as distinct.
  5. The program should output an appropriate message indicating whether the entered string is a palindrome or not.

C Program to Check if a String is a Palindrome without using Built-in Function

#include <stdio.h>

// Function to check if a string is a palindrome
int isPalindrome(char *str) {
    int length = 0;
    int i, j;
    
    // Find the length of the string
    while (str[length] != '\0') {
        length++;
    }
    
    // Check if the string is a palindrome
    for (i = 0, j = length - 1; i < j; i++, j--) {
        if (str[i] != str[j]) {
            return 0; // Not a palindrome
        }
    }
    
    return 1; // Palindrome
}

int main() {
    char str[100];
    
    printf("Enter a string: ");
    scanf("%s", str);
    
    if (isPalindrome(str)) {
        printf("%s is a palindrome.\n", str);
    } else {
        printf("%s is not a palindrome.\n", str);
    }
    
    return 0;
}

How it Works

  1. The program prompts the user to enter a string.
  2. The entered string is stored in an array in the main function.
  3. The isPalindrome function is called with the entered string as an argument.
  4. Inside the isPalindrome function:
    • The length of the string is calculated by iterating through it until the null character ('\0') is encountered.
    • Two variables, i and j, are initialized to keep track of the start and end indices of the string for comparison.
    • A loop is executed from the start and end of the string towards the middle.
    • During each iteration, the characters at indices i and j are compared.
      • If they are different, the function returns 0 to indicate that the string is not a palindrome.
      • If they are the same, the loop continues to the next iteration.
    • If the loop completes without finding any differences, the function returns 1 to indicate that the string is a palindrome.
  5. The return value of the isPalindrome function is used in the main function to determine whether the entered string is a palindrome or not.
  6. Based on the return value, the appropriate message is printed to the console indicating whether the string is a palindrome or not.

The program performs the palindrome check by comparing characters at symmetric positions in the string, starting from both ends and moving towards the middle. If any pair of characters is found to be different, the string is determined to be not a palindrome. Conversely, if all the pairs of characters match, the string is determined to be a palindrome.

Input /Output

C Program to Check if a String is a Palindrome without using Built-in Function

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C program calculates the volume and surface area of a sphere using its radius. A sphere is a three-dimensional...
This C program converts a Roman numeral to a decimal number. Roman numerals are a system of numerical notation used...
This C program calculates the value of sin(x) using the Taylor series expansion. The Taylor series expansion is a mathematical...