What is activation record in the context of C and C++?
An activation record is another name for Stack Frame. It’s the data structure that composes a call stack. It is generally composed of: Locals to the callee Return address to the caller Parameters of the callee The previous stack pointer (SP) value The Call Stack is thus composed of any number of activation records that … Read more