fuhsnn / slimcc

C11 compiler with GNU extensions for x86-64 Linux, working towards C23
MIT License
34 stars 4 forks source link

Initializing global pointer with inner row of 2d array #15

Closed fuhsnn closed 11 months ago

fuhsnn commented 11 months ago
// file scope
int arr[2][2] = {{1,2},{3,4}};
int *p1 = arr[1];