Find string palindrome 10marks
Answer Posted / coolcom(chandan)
void main()
{
int a,len,palin;
char s[20];
scanf("%s",s);
len=strlen(s);
printf("%d \n",len);
for(a=0,len=len-1;a<len;a++,len--)
{
palin=0;
if(s[a]==s[len])
palin=1;
else
{
printf("string %s is not palindrome",s);
getch();
exit();
}
}
printf("string %s is palindrome",s);
getch();
}
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
How do we print only part of a string in c?
What is the use of structure padding in c?
What are pointers really good for, anyway?
What is a good way to implement complex numbers in c?
Can we compile a program without main() function?
What are pointers in C? Give an example where to illustrate their significance.
Do you know the use of fflush() function?
Is c compiled or interpreted?
What is keyword in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Why doesn't C support function overloading?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Can we assign integer value to char in c?
write a program to find out prime number using sieve case?