int main(int argc, char *argv[]) { int i; int *p; int x[1][1] = {100}; i = 0; p = (int*)&x; *(x[0] + i) = *(p + i); }