Guest User

Untitled

a guest
Jul 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. int factr (int n)
  2. {
  3.  
  4. int answer;
  5.  
  6. if(n==1) return(1);
  7. answer = factr (n-1) * n;
  8.  
  9. return (answer);
  10. }
Add Comment
Please, Sign In to add comment