Chris Lattner | 6200a57 | 2003-05-14 21:08:04 +0000 | [diff] [blame^] | 1 | #include <stdio.h> |
2 | |||||
3 | extern int table[]; | ||||
4 | |||||
5 | int main() { | ||||
6 | printf("%d %d %d %d\n", table[0], table[1], table[2], table[3]); | ||||
7 | return table[1]; | ||||
8 | } | ||||
9 | |||||
10 | int table[] = { 1, 0, 3, 4 }; |