int hundred(int n) { int result ; result = (n / 100) % 10 ; return(result) ; }