How do you determine if a string is a palindrome?
Answer / glibwaresoftsolutions
When the order of the characters in a string is reversed and the string remains unchanged, it is called a palindrome.
One way to accomplish this is to first reverse the original string and then determine whether the reversed string is identical to the original string.
| Is This Answer Correct ? | 0 Yes | 0 No |
largest Of three Number using without if condition?
Is it acceptable to declare/define a variable in a c header?
what is the difference between declaration ,defenetion and initialization of a variable?
Program to find larger of the two numbers without using if-else,while,for,switch
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
Do variables need to be initialized?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
List some applications of c programming language?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
What is main function in c?
write a c programme for add of two numbers with out use of arthematic operators
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female