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 |
array of pointer pointer to array pointer to pointer
What is the difference between arrays and pointers?
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
How is null defined in c?
what is diff b/w huge & far & near pointer??
What is c definition?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
How would you rename a function in C?
Give the Output : * * * * * * * * * *
Give the rules for variable declaration?
What do you mean by scope of a variable in c?
I need a sort of an approximate strcmp routine?