Latest Comp. Science Aptitude Question SOLUTION: Consider the following program
n = b1b2b3 .bm
int n, rev;
rev = 0;
while (n > 0) {
rev = rev * 10 + n %10;
n = n/10;
}
There is something I don't understand about algebra: It has been around for thousands of years, yet no one has ever found out what the value of "x" or "y" really is.
Richard van der Merwe
I have often admired the mystical way of Pythagoras, and the secret magic of numbers.