Answer Posted / akhilesh tiwari
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 |
Post New Answer View All Answers
What is openmp in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
In C, What is the #line used for?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
write a program to find the given number is prime or not
`write a program to display the recomended action depends on a color of trafic light using nested if statments
Why string is used in c?
What is the difference between call by value and call by reference in c?
find the sum of two matrices and WAP for it.
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What is function what are the types of function?
What is integer constants?
What is queue in c?