what is difference between strcmp & palindrome?
Answers were Sorted based on User's Feedback
strcmp is string comparison function used to compare between two string.whereas polindrome is not any string function.
but we can create programe to check polindrom string/number
using strrev function.
example of polindrome string. ABA,MAM,MADAM.
it means both side read and pronounciation are same is called polindrome.......
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / mohit singh sisodiya yuv
strcmp is a string comparator and palindrone is a
combination of strcpy,strcmp ,strrev we can use them in
place of all
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / arun mavi 8800849839
strcmp is a sting word which is used in our c++ language .Its means to read and write the function
| Is This Answer Correct ? | 1 Yes | 10 No |
how to create c progarm without void main()?
What is the advantage of a random access file?
What are the 4 types of organizational structures?
What is a loop?
What language is lisp written in?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Where are some collections of useful code fragments and examples?
Explain null pointer.
How can I open a file so that other programs can update it at the same time?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
What is a keyword?
Is int a keyword in c?