Print all the palindrome numbers.If a number is not
palindrome make it one by attaching the reverse to it.
eg:123
output:123321 (or) 12321
Answer Posted / santhu
#include<stdio.h>
main()
{
int n,m;
}
| Is This Answer Correct ? | 7 Yes | 43 No |
Post New Answer View All Answers
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
praagnovation
Explain the term printf() and scanf() used in c language?
What are two dimensional arrays alternatively called as?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Write a C program in Fibonacci series.
What is meant by gets in c?
What is operator promotion?
Explain about C function prototype?
What is keyword in c?
Can you please explain the difference between strcpy() and memcpy() function?
What is main () in c language?
What is the difference between break and continue?
What is sizeof array?
how to make a scientific calculater ?