how to find out the reverse number of a digit if it is
input through the keyboard?
Answer Posted / prince rafi
void main()
{
int num,m,temp=0;
clrscr();
printf("enter the value of num);
do
{
m=m%10;
temp=(temp*10)+m;
num=num/10;
}
while(num>0);
printf("%d",sum);
}
getch();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What do you mean by keywords in c?
Explain the red-black trees?
write a c program for swapping two strings using pointer
What is a built-in function in C?
Explain the difference between strcpy() and memcpy() function?
Why we use conio h in c?
What is a void pointer? When is a void pointer used?
What are the features of the c language?
What is a double c?
How do you sort filenames in a directory?
Is it valid to address one element beyond the end of an array?
What does do in c?
Where can I get an ansi-compatible lint?
What is the use of ?: Operator?