Search results for dynamic-scoping

2 votes
4 answers
1
3 votes
1 answer
2
How to solve any dynamic scoping question . Plz describe in detail.
3 votes
2 answers
9
int i=10;main(){int i =5,k,i=6;printf("enter value");scanf("%d",&k);if(k>0){fun1();}else{fun2();}}void fun1();{printf("%d",i);}void fun2();{int i=5;printf("%d",i);fun1();...
To see more, click for the full list of questions or popular tags.