n = n % (int) pow(10, (int) log10(n));
12345
unsigned int remove_left_most_digit( unsigned int n ) { if( n < 10 ) return 0 ; // chop of the last digit else return remove_left_most_digit( n/10 ) * 10 + n%10 ; }