我正在研究递归,我遇到了这个问题:
FORTRAN implementations do not permit recursion because
a. they use static allocation for variables
b. they use dynamic allocation for variables
c. stacks are not available on all machines
d. it is not possible to implement recursion on all machines.
我发现答案是(a)
但我想知道编程语言支持递归的所有特性。
有人可以解决我的疑问吗
提前致谢