I'm having a little bit of confusion on how recursive calls work.
What does the method call recur2(5) display with the following code?:


public static void recur2 (int n)
{
if(n<=0)
{
...