#include #include #define MAX 10 static int table[MAX]; int main() { printf("table: %x, table[-3]: %x, (table-3):%x\n", table, &table[-3], (table-3)); return 0; }