question archive Draw hierarchical structure for scope management in symbol table? int value=10; void pro_one() { int one_1; int one_3; { int one_2; |_ inner scope 1 int one_4; | } / int one_6; { int one_5; |_ inner scope 2 int one_7; | } / } void pro_two() { int two_2; int two_3; { int two_1; |_ inner scope 3 int two_4; | } / int two_5; }
Subject:Computer SciencePrice: Bought3
Draw hierarchical structure for scope management in symbol table?
int value=10;
void pro_one()
{
int one_1;
int one_3;
{
int one_2; |_ inner scope 1
int one_4; |
} /
int one_6;
{
int one_5; |_ inner scope 2
int one_7; |
} /
}
void pro_two()
{
int two_2;
int two_3;
{
int two_1; |_ inner scope 3
int two_4; |
} /
int two_5;
}