18. Write a program to reverse a number.

#include<stdio.h>
#include<conio.h>
void main()
{
int r,num,sum=0,i;
printf("Enter any number you want to reverse: ");
scanf("%d",&num);
for(i=num;i>0;num++)
{
r=i%10;
sum=sum*10+r;
i=i/10;
}
printf("Reverse is %d",sum);
getch();
}


#OUTPUT:

Comments

Popular posts from this blog

12. Write a program to read marks from keyboard and your program should display equivalent grade according to following table(if else ladder) Marks Grade 100 - 80 Distinction 79 - 60 First Class 59 - 40 Second Class < 40 Fail

13. Write a c program to prepare pay slip using following data. Da = 10% of basic, Hra = 7.50% of basic, Ma = 300, Pf = 12.50% of basic, Gross = basic + Da + Hra + Ma, Nt = Gross – Pf.