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
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is a program?
What is calloc()?
Sir i need notes for structure,functions,pointers in c language can you help me please
Why is structure important for a child?
Explain what is a stream?
Explain how can I convert a number to a string?
Explain what is gets() function?
What is action and transformation in spark?
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.
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
Difference between malloc() and calloc() function?
What is an example of structure?
What are the application of void data type in c?
What is the equivalent code of the following statement in WHILE LOOP format?