Can you sort this one out? The procedure Nutty(a, b, c : integer) is a recursive procedure.
Nutty(a, b, c : integer) IF a > b THEN output(c) ELSE OUTPUT(a) Nutty(b, c, a) END IF
What would be the output from these ...
Back