/ Undifined / 18 - WAP to find the reverse of a number.

18 - WAP to find the reverse of a number.

WAP to find the reverse of a number.
#include <stdio.h>
 
int main()
{
int n, reverse = 0;
 
printf("Enter a number to reverse\n");
scanf("%d", &n);
 
while (n != 0)
{
reverse = reverse * 10;
reverse = reverse + n%10;
n = n/10;
}
 
printf("Reverse of entered number is = %d\n", reverse);
 
return 0;
}
Output 
Enter a number to reverse 1234
 
Reverse of entered number is =4321

about author

Blogger Sens it website about blogger templates and blogger widgets you can find us on social media
Previous Post :Go to tne previous Post
Next Post:Go to tne Next Post

No comments:

Post a Comment