blob: 56a7f2825751e05c6d05cf41f51ed4e1826c3359 [file] [log] [blame]
#include <stdio.h>
extern int table[];
int main() {
printf("%d %d %d %d\n", table[0], table[1], table[2], table[3]);
return table[1];
}
int table[] = { 1, 0, 3, 4 };