Monday 7 July 2014

C PROGRAM TO REVERSE A 3 DIGIT NUMBER

REVERSING A 3 DIGIT NUMBER



#include<conio.h>
#include <stdio.h>
 
int main()
{
   int n, reverse = 0;
 clrscr ();
   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;
}

No comments:

Post a Comment