> int factorial( int x ) > { > return ( x == 1 ): 1 ? (factorial( x - 1 ) * x); > } This function will _not_ return the factorial of 5500. Nick