write a program to display reverse of a number using for
loop?

Answer Posted / ganagdhara c

#include<stdio.h>
#include<conio.h>
void main()
{
long int num,i;
int d;
clrscr();
printf("\n enter number");
scanf("%ld",&num);
printf("\n the reverse of number %ld is ",num);
for(i=0;num>0;i++)
{
d=num%10;
num=num/10;
printf("%d",d);
}
getch();
}

Is This Answer Correct ?    22 Yes 17 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2545


What is a program?

892


What is calloc()?

801


Sir i need notes for structure,functions,pointers in c language can you help me please

2154


Why is structure important for a child?

815


Explain what is a stream?

787


Explain how can I convert a number to a string?

843


Explain what is gets() function?

799


What is action and transformation in spark?

814


 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

1929


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

2822


Difference between malloc() and calloc() function?

858


What is an example of structure?

788


What are the application of void data type in c?

958


What is the equivalent code of the following statement in WHILE LOOP format?

1069