+ 5
Can I call one function in another function in C++ and Python
3 Answers
+ 3
yes
you can even call the same function - that is called 'recursion'
+ 3
Yes, provided that you define the called "inner" function/method first (before calling it in the "outer" function/method).
0
You can call a function inside another function if it is in scope