adding line breaks

This commit is contained in:
Jidong Xiao
2025-01-28 13:49:34 -05:00
committed by JamesFlare1212
parent f4b965a62c
commit 338ad7881e

View File

@@ -181,7 +181,7 @@ int intpow(int n, int p) {
## 7.11 The Mechanism of Recursive Function Calls ## 7.11 The Mechanism of Recursive Function Calls
- For each recursive call (or any function call), a program creates an activation record to keep track of: - For each recursive call (or any function call), a program creates an activation record to keep track of:
Completely separate instances of the parameters and local variables for the newly-called function. Completely separate instances of the parameters and local variables for the newly-called function.
The location in the calling function code to return to when the newly-called function is complete. (Who The location in the calling function code to return to when the newly-called function is complete. (Who
asked for this function to be called? Who wants the answer?) asked for this function to be called? Who wants the answer?)