Page 1 of 1

Once for static scoping, and once for dynamic scoping, draw the symbol table at the location indicated below. (10 points

Posted: Wed Apr 27, 2022 3:34 pm
by answerhappygod
Once for static scoping, and once for dynamic scoping, draw the
symbol table at the location
indicated below. (10 points)
int x;
char y;
float z;
void p(void){
long z;

{
int y[15];
int z, a;
// HERE ß
}
}
void q(void){
int y;

}
main (){
char x;
p();

}