#include /* Code we developed in class on Feb 25th. */ /* prototype for fact defined here so that gcc can compile main() properly (since it calls fact). The function definition for fact() is contained in fact.s (written in assembly language) */ int fact(int x); /* main just calls fact() a couple of times */ int main() { printf("Factorial(9) is %d\n",fact(9)); printf("Factorial(0) is %d\n",fact(0)); return(0); }