Skip to content

Commit

Permalink
initial commit reverse.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
TanujRohilla authored Oct 1, 2018
1 parent b9db699 commit b2f55a2
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions reverse/reverse.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#include<iostream>
using namespace std;

int reverse(int num)
{
static int temp,sum;

if(num>0)
{
temp = num%10;
sum = sum*10 + temp;

reverse(num/10);
}
else
{
return sum;
}
}

int main()
{
int num,rev;

/* Taking input. */

cout<<"Enter number:";
cin >> num;

/* Called reverse function .*/

rev = reverse(num);

cout << "Reverse of a input number is " << rev;
return 0;
}


0 comments on commit b2f55a2

Please sign in to comment.