Question: Given program - draw stack frame showing dynamic and static scope link. program scopes (input, output); var a : integer; procedure first; begin a :=
Given program - draw stack frame showing dynamic and static scope link.
program scopes (input, output); var a : integer; procedure first; begin a := 1; end; procedure second; var a : integer; begin first; end; begin a : =2; second; write (a); end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
