Part III: Function Tracing and Output Order Flashcards
Call Stack
The structure that tracks function calls, local variables, and return addresses in memory.
Pass by Value vs. Pass by Reference
Pass by Value: A copy of the argument is passed to the function.
Pass by Reference: A reference to the argument is passed, allowing modification of the original variable.
Base Address of an Array
The memory address of the first element of an array.
Pointer to an Array
A pointer variable that stores the address of an array’s first element and can be used for iteration.
Output Order in a Function Call
The order in which output statements execute, considering recursion, loops, and function calls.
Code:
void func(int* p) {
*p = 20;
}
int main() {
int x = 10;
func(&x);
cout «_space;x;
}