I'm stuck with something I really don't understand and I hope someone over here does.
Can anybody explain me why 'nextOne' holds the value 51? It's clear that at index 2 in the expression array is the number 3 so why does it store 51 in stead of 3 in nextOne?
Here it is:

nextOneis an integer and you're passing it a char value, which can be interpreted as an integer.. so 51 ASCII code for '3'. – Deleteman Sep 28 '11 at 19:00