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 |
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
What is difference between static and global variable in c?
which is faster execution: loops or recursion?
What is declaration and definition in c?
Explain how do you use a pointer to a function?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
WAP – represent a char in binary format
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
how can i calculate mean,median,mode by using c program
What does calloc stand for?
What are derived data types in c?
What are the advantages and disadvantages of a heap?