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 |
What is getch () for?
How does #define work?
Explain heap and queue.
what is a constant pointer in C
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
Write a program in C to convert date displayed in gregorian to julian date
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What is a Genralised LInked List?? Please give a detailed explation of it..
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }