palindrome for strings and numbers----Can anybody do the
prog?
Answer Posted / shruti
//the palindrome for string can also be written as below,
without using inbuilt functions.
void main()
{
char str[10];
int flag = 0;
int i , j;
puts("ENTER THE STRING");
fflush(stdin);
gets(str);
for(i = 0 ; str[i] != '\0' ; i++);
i--;
for(j = 0 ; j<i ; j++ , i--)
{
if(str[j] == str[i])
flag = 1;
else
{
flag = 0;
break;
}
}
if(flag == 1)
puts("STRING IS A PALINDROME");
else
puts("STRING IS NOT A PALINDROME");
}
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What is your stream meaning?
Tell me what is the purpose of 'register' keyword in c language?
What is ponter?
What do you mean by a local block?
what is the difference between 123 and 0123 in c?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
how is the examination pattern?
write a progrmm in c language take user interface generate table using for loop?
What is difference between Structure and Unions?
What is a file descriptor in c?
c language interview questions & answer
What does the c preprocessor do?
Explain the difference between malloc() and calloc() function?
Which is better malloc or calloc?
Can a variable be both constant and volatile?