Menu

Write a C program to check if the given string is a palindrome or not without using strrev() library function.

  • Write a C program to check if the given string is a palindrome or not without using strrev() library function.

    Write a C program to check if the given string is a palindrome or not without using strrev() library function.
  • Chegg Logo

    Here’s the best way to solve it.

    Solution
    Step 1
    c
    #include<stdio.h>
    #include<string.h>
    int main()
    {
    char str[100], temp[100];
    int i, j=0;
    printf("En```...

OR