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
What are register variables? What are the advantage of using register variables?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Write a program to print ASCII code for a given digit.
What is data structure in c language?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is %g in c?
What is operator promotion?
How to define structures? ·
When can a far pointer be used?
List the different types of c tokens?
Explain the properties of union. What is the size of a union variable
How does free() know explain how much memory to release?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
what will be the output for the following main() { printf("hi" "hello"); }