How is a problem usually reduced with a recursive module?
What will the following program display?
Module main()
Declare Integer num = 0
Call showMe(num)
End Module
Module showMe(Integer arg)
If arg <>
Call showMe(arg + 1)
Else
Display arg
End If
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here