aboutsummaryrefslogtreecommitdiffstats
path: root/test/array.c
blob: e33d47b0c1edff85d875e29d6fdc8b0a9d6b66a5 (plain)
1
2
3
4
int main() {
        int x[5] = {1, 2, 3, 4, 5};
        return x[2];
}