Compiler Design 2023

Testcase c39 of Assignment 3:
// local array declarations:
void foo()
{
int i[10], j, k[3] = {1, 2, 3};
int i = {1};
int a[1] = 22;
}

c39