Given an integer n, find the sum n rev(n). the rev() function reverses the integer but also keeps track of the beginning zero i.e rev(4200) = 2400 , rev(301) = 103. return the sum

Answer :

Other Questions