Question 5
Consider the following program.
Assuming each function must complete before its result is used in the next function call, in which sequence are the functions executed?
main → sub → sub → divi → printf
main → printf → sub → sub → divi
main → divi → sub → sub → printf
main → sub → divi → sub → printf