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
What is append in c#?
What is the function of .IsDescendent()?
If c# destructors are so different to c++ destructors, why did ms use the same syntax?
How do I create multifile assembly?
What is polymorphism in c sharp?
What is an Interface in C#?
What is monitor in C#?
Difference between debug.write and trace.write?
How do I automate my desktop application?
What is a sealed class?
How do I type a whitespace character?
What is type cast in C#?
How do you prevent a class from being inherited?
If you define a user defined data type by using the class keyword, is it a value type or reference type?
What does addressof operator do in background ?