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

Answer Posted / jayesh jain

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

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the hardest programming language?

894


What are file streams?

755


What are integer variable, floating-point variable and character variable?

835


What is string in c language?

811


Write a program to print all permutations of a given string.

914


What is meant by inheritance?

828


Explain the difference between null pointer and void pointer.

829


How do shell structures work?

775


Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1

3922


what do you mean by enumeration constant?

766


What does stand for?

811


What is a scope resolution operator in c?

933


Describe the difference between = and == symbols in c programming?

1001


How can I ensure that integer arithmetic doesnt overflow?

810


What are the 4 types of unions?

776