int buff[10]; int main() { int i = 9; int *p = buff; *(p+i) = 7; return buff[9]; //7 } void interrupt() { }