diff --git a/CPP/strings/palindorme.cpp b/CPP/strings/palindorme.cpp new file mode 100644 index 0000000..6563510 --- /dev/null +++ b/CPP/strings/palindorme.cpp @@ -0,0 +1,33 @@ +//author : seema Kumari patel +//date : 02-10-2025 +//purpose: To check whether the given string is palindrome or not + + +#include + +using namespace std; + +void main() +{ + string s; + cout<<"Enter the string : "; + cin>>s; + int n=s.length(); + int flag=0; + for(int i=0;i