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. -
Here’s the best way to solve it.SolutionStep 1c
#include<stdio.h>
#include<string.h>
int main()
{
char str[100], temp[100];
int i, j=0;
printf("En```...
OR