TomoLink
Easytcs-nqt

What does the following function return? f(3) where: int f(int n) { if(n<=1) return 1; return f(n-1) * n; }