Monday, March 9, 2020

Write a program to find the reverse of given number or "n" number.

#include<stdio.h>
#include<conio.h>
void main()
{
 int n,r,rev=0;
 printf("Enter a number");
 scanf("%d",n);
 while(n!=0)
   {
    r=n%10;
    rev=rev*10+r;
    n=n/10;
   }
 printf("\n Reverse Number = %d",rev);
}

No comments:

Post a Comment

pattern

55555 4444 333 22 1 #include <stdio.h> int main() {     int i,j;     for(i=5; i>=1; i--)     {         for(j=1; j<=i;...