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
What is the hardest programming language?
What are file streams?
What are integer variable, floating-point variable and character variable?
What is string in c language?
Write a program to print all permutations of a given string.
What is meant by inheritance?
Explain the difference between null pointer and void pointer.
How do shell structures work?
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
what do you mean by enumeration constant?
What does stand for?
What is a scope resolution operator in c?
Describe the difference between = and == symbols in c programming?
How can I ensure that integer arithmetic doesnt overflow?
What are the 4 types of unions?