Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.65K
~338 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for cl2020

[CODE]#include <iostream> #include <string> using namespace std; int main() { char str[100]; cout << "Enter word :"; cin >> str; int x = strlen(str)-1; for(int i = 0; i <= x; i++) { if (str[i] == str[x-i]) { continue; } else { cout<<"Not a palindrome"<<endl; return 0; } } cout …

Member Avatar for youjean
0
338

The End.