fork(2) download
#include <stdio.h>

int main() {
    int foo[] = {2, 3, 5};
    int bar[] = {7, 11, 13};
    printf("%d\n%d\n", foo+0, bar+0);
    printf("%d\n", foo[3]);
    printf("%d\n", foo[4]);
    printf("%d\n", foo[5]);
    return 0;
}
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
-1081962904
-1081962892
7
11
13