FIFA-2022 Career Guide Free Tutorials Go to Your University Placement Preparation 
0 like 0 dislike
3.4k views
in BPUT B.Tech (CSE I-Sem) C Programming Lab by Goeduhub's Expert (7.1k points)

Write a C program to determine if the given string is a palindrome or not

1 Answer

0 like 0 dislike
by Goeduhub's Expert (7.1k points)
edited by
 
Best answer

Palindrome String

In this program we are going to check if  a user provided string is palindrome or not using C programming.

To learn basics of string in C programming Click Here.

Example :

#include <stdio.h>
#include <string.h>
#include<conio.h>
void main()
{
char string1[20];
int i, length;
int flag = 0;
clrscr();
printf("Enter a string:");
scanf("%s", string1);
length = strlen(string1);
for(i=0;i < length ;i++)
{
if(string1[i] != string1[length-i-1])
{
flag = 1;
break;
}
}
   
if (flag)
{
printf("%s is not a palindrome", string1);
}   
else
{
printf("%s is a palindrome", string1);
}
getch();
}

Output :

Output of above program showing is string is palindrom or not


For More BPUT C Programming Lab Experiments Click Here

Learn & Improve In-Demand Data Skills Online in this Summer With  These High Quality Courses[Recommended by GOEDUHUB]:-

Best Data Science Online Courses[Lists] on:-

Claim your 10 Days FREE Trial for Pluralsight.

Best Data Science Courses on Datacamp
Best Data Science Courses on Coursera
Best Data Science Courses on Udemy
Best Data Science Courses on Pluralsight
Best Data Science Courses & Microdegrees on Udacity
Best Artificial Intelligence[AI] Courses on Coursera
Best Machine Learning[ML] Courses on Coursera
Best Python Programming Courses on Coursera
Best Artificial Intelligence[AI] Courses on Udemy
Best Python Programming Courses on Udemy

Related questions

 Important Lists:

Important Lists, Exams & Cutoffs Exams after Graduation PSUs

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy ||  Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 

 

Free Online Directory

...