User profile: Kpshannon

User info
User name:Kpshannon
History
Joined:
Number of posts:4
Latest posts:

Getting "inf" and don't know why
Thank you all very much for the help here. I know that these functions are not optimal, but this is...

Getting "inf" and don't know why
My bad about the factorial code, should've posted. Here is the full code. I tried changing the fac...

Getting "inf" and don't know why
double factorial(int N) { double return_val = N; for (int i = 1; i <= N-1; ++i) retu...

Getting "inf" and don't know why
I am trying to compute e^x and have made a factorial function that I verified is correct. The factor...