Write code for palindrome?

Answer Posted / irfan khan

string s1="";
string s2="";
int len=s1.length;
for(int i=0;i<len-1;i++)
{
s2=s1.substring[i]+s2;
console.writeline(s2);
}
if(strcmp(s1,s2)==0)
{
console.writeline("given sting is palindrome");
}
else
console.writeline("not palindrome");

Is This Answer Correct ?    12 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is append in c#?

633


What is the function of .IsDescendent()?

767


If c# destructors are so different to c++ destructors, why did ms use the same syntax?

705


How do I create multifile assembly?

699


What is polymorphism in c sharp?

711


What is an Interface in C#?

719


What is monitor in C#?

755


Difference between debug.write and trace.write?

714


How do I automate my desktop application?

680


What is a sealed class?

667


How do I type a whitespace character?

720


What is type cast in C#?

745


How do you prevent a class from being inherited?

702


If you define a user defined data type by using the class keyword, is it a value type or reference type?

698


What does addressof operator do in background ?

772