Part Number: TDA4VM
when i compile the code with ARM Optimizing C/C++ Compiler v20.2.0.LTS,
what is the maximum call depth of a recursive function?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: TDA4VM
when i compile the code with ARM Optimizing C/C++ Compiler v20.2.0.LTS,
what is the maximum call depth of a recursive function?
The compiler imposes no limit. In the general case, it is not possible for the compiler to know how deep the recursive calls go. Be sure you don't overflow the stack.
Thanks and regards,
-George