int fact_r(n) int n; { int answer; if( n==1 ) return(1); answer=fact_r(n-1)*n; // Αναδρομική κλήση της συνάρτησης fact_r( ) return(answer); }