RosettaCodeData/Task/Gotchas/C/gotchas-3.c
2023-07-01 13:44:08 -04:00

4 lines
110 B
C

int foo[4] = {4,8,12,16};
int x = foo[0]; //x = 4
int y = foo[3]; //y = 16
int z = foo[4]; //z = ?????????