// String-Pallindrome #include<string.h> #include<stdio.h> #include<conio.h> void main() { char str[50],str2[50]; printf("Enter the string -> "); gets(str); strcpy(str2,str); (strcmp(strrev(str),str2)==0)?printf("Pallingdrome"):printf("Not Pallingdrome"); getch(); } // Accessed third time
-
Notifications
You must be signed in to change notification settings - Fork 0
Hayate-Ayasaki/String-Pallindrome
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published