bug_r.c

Go to the documentation of this file.
00001 #include "bug_r.h"
00002 
00003 int bug_r(int val)
00004 {
00005   if (val <= 1) return 1;
00006   return(val * bug_r(val -1));
00007 }

Generated on Wed Dec 31 13:51:03 2008 by  doxygen 1.5.8