Compiler Design 2023

Testcase c29.5 of Assignment 4:
1
2
3
4
5
6
7
int e[2], f;

int main(){
   int a;
   a = e[e[2]];
   e[e[2]] = 3;
}

c29.5