ts-c-compiler icon indicating copy to clipboard operation
ts-c-compiler copied to clipboard

Nested scopes

Open Mati365 opened this issue 3 years ago • 0 comments

int main() {
    int d = 5;
    {
        int k = 6, j = 7;
    }

    int k = 5;
}

Mati365 avatar May 16 '22 10:05 Mati365