 |
One of my friends, who is learning to program in C, asked me about how to write a program which checks an inputed string is a palindrome or not, without using the header file string.h
So here's the solution.
#include <stdio.h>
void main(void)
{
char str;
int len=0,i=0,j,flag=1;
By pradeep
Last Message By karthick.RG.Rajan
|
2 28,522 |