Question: int d, g; void main(void) { int a, b, c; . . . } void fun1(void) { int a, c, d; . . .

 int d, g; void main(void) { int a, b, c; . . . } void fun1(void) { int a, c, d; . . . <--------------- 2 } void fun2(void) { int b, d, e; . . . } void fun3(void) { int d, e, f; . . . <--------------- 1 }

Given the code below, what is the referencing environment at point 2 in the code, assuming dynamic scoping is used, given the following call history.

main calls fun3, fun3 calls fun2, and fun2 calls fun1

Group of answer choices

d (global)

g (global)

a (main)

b (main)

c (main)

d (fun3)

e (fun3)

f (fun3)

b (fun2)

d (fun2)

e (fun2)

a (fun1)

c (fun1)

d (fun1)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!