Joined
Last Seen
-3 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: //Function that reverses a given number int reverse(int num) { static int sum,base =1; sum=0; if(num>0) { reverse(num/10); sum += (num%10)*base; base*=10; } return sum; } |
The End.