#include #include int foo(int what){ if(what == 1) return 1; int fac = what * foo(what-1); return fac; } int main(){ while(1) foo(33); return 0; }