Posts
 
Reputation
Joined
Last Seen
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
1 Commented Post
0 Endorsements
Ranked #107.55K
~2K People Reached
Favorite Forums
Favorite Tags
c x 1

1 Posted Topic

Member Avatar for varun51

//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; }

Member Avatar for Amangpt01
0
2K

The End.