If we are using a recursive factorial function say FactA()

and put the result in a variable like

int I=FactA(5)

The FactA() will use stact to calculate the factorial and store it in I
...